.cf-exp-grid {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px;
}

.cf-exp-card {
    --cf-overlay-bottom: rgba(10, 10, 18, .95);
    --cf-overlay-middle: rgba(10, 10, 18, .50);
    --cf-overlay-top: rgba(10, 10, 18, .10);
    --cf-img-fit: cover;
    --cf-img-position: center center;
    --cf-img-scale: 1;
    --cf-img-width: 100%;
    --cf-img-height: 100%;
    --cf-img-hover-scale: 1.08;
    position: relative;
    min-height: 520px;
    border-radius: 24px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    isolation: isolate;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: inherit;
    transform: translateZ(0);
    transition: transform .6s cubic-bezier(.25, .46, .45, .94), box-shadow .45s ease;
}

.cf-exp-image-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cf-exp-bg-img {
    width: var(--cf-img-width, 100%) !important;
    height: var(--cf-img-height, 100%) !important;
    min-width: 100%;
    min-height: 100%;
    max-width: none !important;
    display: block;
    object-fit: var(--cf-img-fit, cover) !important;
    object-position: var(--cf-img-position, center center) !important;
    filter: saturate(1.25) contrast(1.05);
    transform: scale(var(--cf-img-scale, 1));
    transform-origin: center center;
    transition: transform .8s cubic-bezier(.25, .46, .45, .94);
}

.cf-exp-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(0deg, var(--cf-overlay-bottom) 0%, var(--cf-overlay-middle) 45%, var(--cf-overlay-top) 100%);
}

.cf-exp-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, .25);
}

.cf-exp-card:hover .cf-exp-bg-img {
    transform: scale(calc(var(--cf-img-scale, 1) * var(--cf-img-hover-scale, 1.08)));
}

.cf-exp-body {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 32px;
}

.cf-exp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 200, 66, .15);
    border: 1px solid rgba(245, 200, 66, .4);
    border-radius: 8px;
    padding: 5px 12px;
    font-family: Outfit, Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #F5C842;
    margin-bottom: 12px;
}

.cf-exp-title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 10px;
}

.cf-exp-description {
    font-family: Outfit, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .65);
    margin: 0 0 18px;
}

.cf-exp-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.cf-exp-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cf-exp-details span {
    font-family: Outfit, Arial, sans-serif;
    font-size: 12px;
    line-height: 1.35;
    color: rgba(255, 255, 255, .55);
}

.cf-exp-details strong {
    color: #F5C842;
    font-weight: 800;
}

.cf-exp-price {
    text-align: right;
    flex: 0 0 auto;
}

.cf-exp-price strong {
    display: block;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
    color: #F5C842;
}

.cf-exp-price small {
    display: block;
    font-family: Outfit, Arial, sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, .45);
    margin-top: 2px;
}

@media (max-width: 1100px) {
    .cf-exp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .cf-exp-grid {
        grid-template-columns: 1fr;
    }

    .cf-exp-card {
        min-height: 520px;
    }

    .cf-exp-body {
        padding: 28px;
    }
}
