
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.featured-clubs{
    font-family: "Quicksand", Sans-serif;
}
.featured-clubs .badge {
    background: #eef4ff;
    color: #2c5eff;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.featured-clubs .section-header h2 {
    font-size: 40px;
    color: #0d2150;
    margin-bottom: 10px;
}

.featured-clubs .section-header p {
    color: #7c8595;
}

.featured-clubs .view-btn {
    text-decoration: none;
    border: 1px solid #2c5eff;
    color: #2c5eff;
    padding: 12px 22px;
    border-radius: 30px;
}

.featured-clubs .club-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.featured-clubs .club-tabs a {
    border: none;
    text-decoration: none;
    background: #eef2f7;
    padding: 10px 18px;
    border-radius: 25px;
    cursor: pointer;
	color:#0E3A84;
}

.featured-clubs .club-tabs .active {
    background: #0E3A84;
    color: #fff;
}

.featured-clubs .club-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.featured-clubs .club-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}

.featured-clubs .card-image {
    position: relative;
}

.featured-clubs .card-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.featured-clubs .top_tag span {
    background: #ff6b1a;
    color: #fff;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.featured-clubs span.tag.blue {
    background-color: #0B2D6E;
}

.featured-clubs .card-content {
    padding: 20px;
}

.featured-clubs .card-content .card_loaction li,
.featured-clubs .card-content .replies li {
    display: flex;
    gap: 20px;
}
.featured-clubs .card-content .card_loaction .loaction{
	font-size:13px;
}
.featured-clubs .card-content .replies .loaction {
	font-size:13px;
}
.featured-clubs .card-content .card_loaction,
.featured-clubs .card-content .replies {
    padding-left: 0;
}

.featured-clubs .card-content .card_loaction li .icon svg,
.featured-clubs .card-content .replies li .icon svg {
    width: 10px;
}

.featured-clubs .card-content a {
    text-decoration: none;
}

.featured-clubs .card-content h3 {
    font-size: 22px;
    color: #13295b;
    margin-bottom: 10px;
font-weight:700;
    font-family: "Fredoka", Sans-serif;
}

.featured-clubs .card-content p {
  color: #777;
    font-size: 16px;
    line-height: 1.5;
}

.featured-clubs .top_tag {
    display: flex;
    position: absolute;
    top: 0;
    padding: 20px;
    gap: 10px;
}

.featured-clubs .top_tag .tag.orange {
    display: flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
}

.featured-clubs .top_tag .tag.orange svg {
    width: 15px;
    fill: #fff;
}

.featured-clubs .tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 15px 0;
}

.featured-clubs .tags span {
    background: #f2f4f7;
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
	color:#13295b;
font-weight: 600;
}

.featured-clubs .price-rating {
      display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-top: 1px solid #ccc;
    padding-top: 20px;
    margin-top: 15px;
}

.featured-clubs .price-rating p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.featured-clubs .price-rating h4 {
    color: #ff6b1a;
font-weight:700;
    font-size: 22px;
    margin-bottom: 0;
    margin-top: 0;
}

.featured-clubs .price-rating .rating {
    display: flex;
}

.featured-clubs .price-rating .rating svg {
    width: 14px;
}

.featured-clubs .actions {
    display: flex;
    gap: 10px;
}
.featured-clubs .actions a{
	text-align:center;
}
.featured-clubs .enquire-btn {
    flex: 1;
    border: none;
    background: #ff6b1a;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    cursor: pointer;
}

.featured-clubs .compare-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 12px 18px;
    border-radius: 30px;
    cursor: pointer;
}

@media(max-width:992px) {
    .featured-clubs .club-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:768px) {
    .featured-clubs .section-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .featured-clubs .club-grid {
        grid-template-columns: 1fr;
    }
}