.clubs {
    background-color: #C8E0F0;
    padding-top: 72px;
    padding-bottom: 96px;
    position: relative;
}
.clubs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
    max-width: 1020px;
    margin: auto;
}
.clubs-list-item {
    width: 495px;
    background-color: #fff;
    border-radius: 16px;
    padding: 30px;
    text-decoration: none;
	box-shadow: 0.990966px 1.98193px 39.6386px rgba(0, 0, 0, 0.15);
}

.entry-header {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.entry-header img {
    width: 247px;
}

.entry-content {
    margin-top: 0;
}

.types {
    display: flex;
    gap: 30px;
    align-items: baseline;
}

#load-more-clubs {
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 64px;
    background-color: #049ED5;
    border-radius: 30px;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 9px 24px;
    font-weight: 700; 
    font-size: 15px; 
    line-height: 150%;
    width: 201px;
}

.label, h2, .address, .single-type p {
    margin: 0;
}
.label {
    margin-bottom: 7px;
    font-weight: 600; 
    font-size: 10px; 
    line-height: 20px;
    text-transform: uppercase;
    color: #2D2D2D;
}
h2 {
    margin-bottom: 20px;
    font-weight: 600; 
    font-size: 28px; 
    line-height: 28px;
    color: #2D2D2D;
    max-height: 28px;
    position: relative;
}
h2 span {
    font-weight: 400; 
    font-size: 14px;
    line-height: 14px;
    position: absolute;
    left: 0;
    top: 28px;
}
.address {
    margin-bottom: 38px;
    font-weight: 400; 
    font-size: 17px; 
    line-height: 20px;
    color: #2D2D2D;
    max-height: 40px;
}
.single-type p {
    font-weight: 500; 
    font-size: 10px; 
    line-height: 20px;
    color: #2D2D2D;
    text-align: center;
}

.map {
    background-image: url('/wp-content/uploads/2026/05/mapa-1920-1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 606px;
}

.submap {
    text-align: center;
    background-color: #012E57;
    padding: 15px;
}
.submap p {
    margin: 0;
    font-weight: 400; 
    font-size: 17px; 
    line-height: 20px;
    color: #fff;
}


/*tablet*/
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .clubs {
        padding-top: 56px;
        padding-bottom: 152px;
    }

    .clubs-list {
        justify-content: center;
        gap: 24px;
    }

    h2 {
        font-size: 22px;
    }

    #load-more-clubs {
        padding: 13px 24px;
        width: 201px;
    }
}



/*mobile*/
@media screen and (max-width: 767px) {
    .clubs {
        padding-top: 16px;
        padding-bottom: 136px;
    }
    .clubs-list {
        gap: 16px;
    }
    .clubs-list-item {
        width: 100%;
        border-radius: 10px;
    }
    .entry-header img {
        width: 146px;
    }
    h2 {
        font-size: 26px;
        line-height: 26px;
    }
    .address {
        font-size: 16px;
        line-height: 19px;
        margin-bottom: 28px;
    }
    .submap p {
        font-size: 14px;
    }
    .map {
		background-image: url('/wp-content/uploads/2026/05/Group-3160-1.png');
		height: 486px;
	}
}