/* content-studio-refactored.css */
/* Extracted inline styles from content-studio.html for cleaner code */

/* Hero Section */
.hero-white-container {
    height: 300vh;
    position: relative;
}

.hero-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 120px;
}

.hero-tagline {
    font-size: 56px;
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Features Section */
.features-new-section {
    background-color: #fff;
}

.features-container-max {
    width: 100%;
    max-width: 1200px;
}

.features-header {
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #000;
}

.features-header p {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Product Showcase */
.product-showcase-section {
    background-color: #fff;
}

.lead-text {
    margin-bottom: 40px;
}

.desc-text {
    margin-bottom: 40px;
}

.btn-container-mt {
    margin-top: 40px;
}

.btn-icon-right {
    font-size: 12px;
    margin-left: 8px;
}

.showcase-split-wrapper-full {
    width: 100%;
    height: 100%;
    align-items: center;
}

/* Social Grid Section */
.social-grid-section {
    min-height: 100vh;
    padding: 0;
    background: #fff;
    display: flex;
    align-items: center;
}

.showcase-right-flex {
    display: flex;
    align-items: center;
}

/* Content Studio hero fit: keep cards + hint visible without clipping */
body[data-page="content-studio"] .hero-sticky-wrapper {
    justify-content: center;
    padding-top: clamp(16px, 2.5vh, 32px);
}

body[data-page="content-studio"] .hero-white-content {
    padding-top: 0;
    padding-bottom: 0;
}

body[data-page="content-studio"] .hero-scroll-transform {
    margin: clamp(16px, 2.8vh, 32px) auto clamp(12px, 2.2vh, 20px);
    gap: clamp(10px, 1.5vw, 18px);
    max-width: 1360px;
}

body[data-page="content-studio"] .transform-item {
    width: clamp(190px, 18vw, 270px);
    height: auto;
    /* Story-like cards (9:16) as intended; images should fill the card. */
    aspect-ratio: 9 / 16;
    background: #eef1f5;
}

body[data-page="content-studio"] .img-wrapper img {
    object-fit: cover;
    object-position: center;
    background: transparent;
}

body[data-page="content-studio"] .scroll-instruction-wrapper {
    padding-bottom: clamp(14px, 2.2vh, 24px);
    transition: opacity 220ms ease;
    will-change: opacity;
}

body[data-page="content-studio"] .scroll-instruction-wrapper.is-hidden {
    opacity: 0;
}
