/* Container */
.ck-hover-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 20px; */
}

/* Card Structure */
.ck-hover-card {
    /* border-radius: 8px; */
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Image Container */
.card-image-wrapper {
    position: relative;
    height: 462px;
    overflow: hidden;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.location-name {
    font-family: 'Lora';
    font-size: 39px;
    margin-bottom: 20px;
    position: relative;
}

.location-name:before {
    content: "";
    position: absolute;
    top: -30px;
    left: 0;
    background: #09B2B8;
    width: 116px;
    height: 5px;
}
/* Location Name Overlay */
/* .location-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 600;
    z-index: 2;
} */


/* Hover Overlay */
.image-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(0deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
    color: #fff;
    z-index: 1;
    display: flex;
    align-items: end;
    transition: 0.5s;
}

.card-image-wrapper:hover .image-hover-overlay {
    top: 0;
    background: rgba(0, 0, 0, 0.80);
}

.hover .overlay-content {
    justify-content: center;
    height: 100%;
    padding-top: 60px;
}
.overlay-content {
    padding: 25px;
    position: relative;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: 0.5s;
}

/* Static Info Section */
.card-static-info {
    padding: 20px;
    background: #f8f9fa;
}

.area-name {
    margin: 0 0 15px 0;
    font-weight: 700;
    /* color: #2c5f2a; */
    /* font-size: 1.2rem; */
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* .info-item i {
    color: #4D4644;
    margin-top: 3px;
    min-width: 20px;
} */
.info-item svg {
    position: relative;
    top: 5px;
    width: 16px;
}
.info-item p {
    margin-bottom: 0;
}

/* Learn More Button */
.learn-more-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    margin-top: 15px;
    transition: background 0.3s ease;
    border: 1px solid;
    width: fit-content;
    text-transform: uppercase;
    font-size: 16px;
}

.learn-more-btn:hover {
    background: #fff;
    color: #403834;
}

.info-item a {
    color: unset;
    text-decoration: underline;
    text-underline-offset: 4px;
}


.info-item a:hover {
    text-decoration: none;
}

a.learn-more-btn.mobile-only {
    border-color: #403834;
    color: #403834;
    display: none;
}

a.learn-more-btn.mobile-only:hover {
    border-color: #403834;
    color: #fff;
    background-color: #403834;
}
/* Mobile Responsive */
@media only screen and (max-width:1024px){
    a.learn-more-btn.mobile-only {
        display: block;
    }
}
@media (max-width: 768px) {
    .ck-hover-cards-container {
        grid-template-columns: 1fr;
    }
    
    .card-image-wrapper {
        height: 350px;
    }
}