/* Container and Global */
.dc-69fc-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #ffffff;
    padding: 80px 20px;
    box-sizing: border-box;
    overflow: hidden;
}

/* Header Section */
.dc-69fc-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.dc-69fc-eyebrow {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.dc-69fc-divider {
    width: 50px;
    height: 2px;
    background-color: #C4A052; /* Fallback */
    margin: 0 auto 25px auto;
}

.dc-69fc-title {
    font-family: 'GT Super', serif; /* Assuming GT super or fallback */
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 400;
}

.dc-69fc-desc {
    font-family: 'Gotham', sans-serif; /* Assuming Gotham or fallback */
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

/* Carousel Section */
.dc-69fc-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.dc-69fc-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

/* Card Styling */
.dc-69fc-card {
    flex: 0 0 50%; /* 2 cards visible on desktop */
    max-width: 50%;
    padding: 0 20px; /* Gap between cards */
    box-sizing: border-box;
}

.dc-69fc-card-img {
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
}

.dc-69fc-card-content {
    background: #fff;
}

.dc-69fc-card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-family: 'GT Super', serif;
    font-weight: 400;
}

.dc-69fc-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    color: #666;
}

/* Navigation and Counter */
.dc-69fc-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    gap: 30px;
}

.dc-69fc-nav-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.dc-69fc-nav-btn:hover {
    opacity: 0.6;
}

.dc-69fc-nav-btn[disabled] {
    opacity: 0.2;
    cursor: not-allowed;
}

.dc-69fc-counter {
    font-size: 1rem;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .dc-69fc-card {
        flex: 0 0 100%; /* 1 card visible on mobile */
        max-width: 100%;
        padding: 0 10px;
    }
    
    .dc-69fc-title {
        font-size: 2rem;
    }
    
    .dc-69fc-wrapper {
        padding: 50px 10px;
    }
}