/**
 * Sticky Columns (Interactive Case Studies) Styles - Custom Agency
 * Matches React StickyCols.jsx & index.css
 */
.sticky-cols {
    padding: 0;
    position: relative;
    width: 100%;
    background-color: #181717;
}

.sticky-cols .col {
    position: absolute;
    width: 50%;
    height: 100%;
    will-change: transform;
}

.sticky-cols .col h1 {
    color: #b1a696;
    width: 60%;
}

.sticky-cols .col p {
    color: #b1a696;
    width: auto;
}

.sticky-cols .col-2 {
    transform: translateX(100%);
}

.sticky-cols .col .col-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-cols .col-content,
.sticky-cols .col-img {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0.5rem;
}

.sticky-cols .col-3 {
    transform: translateX(100%) translateY(100%);
    padding: 0.5rem;
}

.sticky-cols .col-4 {
    transform: translateX(100%) translateY(100%);
}

.sticky-cols .col-content-wrapper {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sticky-cols .col-content-wrapper,
.sticky-cols .col-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #2a2725;
    border-radius: 3rem;
    overflow: hidden;
}

.sticky-cols .col-content-wrapper-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sticky-cols .col-img-1,
.sticky-cols .col-img-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sticky-cols .col-img-2 {
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    transform: scale(1);
}

.sticky-cols .line {
    overflow: hidden;
}

.sticky-cols .line span {
    display: block;
    will-change: transform;
}

@media (max-width: 768px) {
    .sticky-cols .col h1 {
        width: 100% !important;
        font-size: clamp(0.95rem, 3.5vw, 1.3rem) !important;
        line-height: 1.2 !important;
    }
    .sticky-cols .col-content-wrapper,
    .sticky-cols .col-content-wrapper-2 {
        padding: 1rem !important;
        border-radius: 1.5rem !important;
    }
    .sticky-cols .col p {
        font-size: 10px !important;
    }
}

/* Compact Case Studies Slider Dots */
.mobile-cs-dot {
    height: 5px !important;
    min-height: 0 !important;
    max-height: 5px !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 9999px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    line-height: 0 !important;
    box-shadow: none !important;
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 2px !important;
}

.mobile-cs-dot:not(.is-active) {
    width: 6px !important;
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.mobile-cs-dot.is-active {
    width: 18px !important;
    background-color: #f4efe7 !important;
}
