/* ============================================================
   SUNNYBANK — WEDDING TRENDS 2026 (REDESIGN)
   ============================================================ */
.sb-ui.sb-wedding-trends-scope {
    /* Width handled by global .sb-container */
    background: var(--sb-soft, #F9F8F6);
    /* Fonts handled by global .sb-container styles */
}

.sb-ui.sb-wedding-trends-scope * {
    box-sizing: border-box;
}

.sb-wt-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
}

.sb-wt-kicker {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: var(--sb-size-sm);
    font-weight: 700;
    color: var(--sb-accent);
    margin-bottom: 15px;
    display: inline-block;
    border-bottom: 1px solid var(--sb-accent);
    padding-bottom: 4px;
}

.sb-wt-header h1 {
    /* Inherits global H1 size */
    margin: 0 0 10px;
}

.sb-wt-sub {
    font-size: var(--sb-size-sm) !important;
    color: var(--sb-text-light);
    font-weight: 300;
}

/* --- INTRO GRID --- */
.sb-wt-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.sb-wt-intro-card {
    background: #fff;
    padding: 50px;
    border-radius: var(--sb-radius);
    box-shadow: var(--sb-shadow);
    border-left: 4px solid var(--sb-accent);
}

/* Ensure intro card text is not huge */
.sb-wt-intro-card p {
    font-size: var(--sb-size-p) !important;
}

.sb-wt-tagline {
    /* Slightly larger emphasis but not huge */
    font-family: var(--sb-font-serif);
    font-size: 1.1rem !important;
    color: var(--sb-green);
    margin-top: 20px;
    font-style: italic;
}

/* --- SIDEBAR --- */
.sb-wt-side {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sb-wt-side-card {
    background: #fff;
    padding: 30px;
    border-radius: var(--sb-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sb-wt-side-card h3 {
    /* Inherits global H3 */
    margin: 0 0 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.sb-wt-pill-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sb-wt-pill-list li {
    background: #F0F4F1;
    color: var(--sb-green);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: var(--sb-size-sm) !important;
    font-weight: 600;
}

/* --- SECTIONS (The Magazine Look) --- */
.sb-wt-section {
    margin-bottom: 80px;
}

/* Alternating Layout Utility */
.sb-wt-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sb-wt-section h2 {
    /* Inherits global H2 */
    margin: 0 0 20px;
    position: relative;
    display: inline-block;
}

/* Decorative line */
.sb-wt-section h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--sb-accent);
    margin-top: 10px;
}

.sb-wt-section-lede {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--sb-text);
    margin-bottom: 20px;
}

.sb-wt-list {
    padding-left: 20px;
    margin-bottom: 30px;
}

.sb-wt-list li {
    margin-bottom: 10px;
    color: #555;
}

/* Image Styling - contained and polished */
.sb-wt-fullwidth-img {
    margin: 60px 0;
    border-radius: var(--sb-radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--sb-shadow);
}

.sb-wt-fullwidth-img img {
    width: 100%;
    /* Flexible height but constrained */
    height: auto;
    max-height: 65vh;
    /* Never more than 65% of viewport */
    aspect-ratio: 16 / 9;
    /* Default nice ratio */
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.sb-wt-fullwidth-img:hover img {
    transform: scale(1.03);
}

/* --- EDITORIAL BLOCKS --- */
.sb-wt-editorial {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    background: #fff;
    padding: 40px;
    border-radius: var(--sb-radius);
    box-shadow: var(--sb-shadow);
    margin: 60px 0;
}

.sb-wt-editorial.reverse {
    grid-template-columns: 1.2fr 1fr;
    direction: ltr;
}

/* Actual swap via order */
.sb-wt-editorial.reverse img {
    order: 2;
}

.sb-wt-editorial.reverse blockquote {
    order: 1;
}

.sb-wt-editorial img {
    width: 100%;
    /* Editorial images don't need to be huge */
    height: auto;
    max-height: 400px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.sb-wt-editorial blockquote {
    font-family: "Playfair Display", serif;
    font-size: 1.4rem !important;
    /* Reduced from 2rem */
    line-height: 1.4;
    color: var(--sb-green);
    margin: 0;
    border-left: none;
    /* remove default */
    text-align: center;
}

.sb-wt-editorial blockquote p {
    font-size: 1rem;
    font-family: "Inter", sans-serif;
    color: #888;
    margin-top: 16px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- COLLAGES --- */
.sb-wt-collage-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.sb-wt-collage-3 img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}

.sb-wt-collage-3 img:nth-child(2) {
    margin-top: -30px;
    /* Offset center image for dynamic look */
}

.sb-wt-collage-3 img:hover {
    transform: translateY(-10px);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .sb-ui.sb-wedding-trends-scope {
        padding: 40px 20px;
    }

    .sb-wt-grid,
    .sb-wt-two-col,
    .sb-wt-editorial,
    .sb-wt-editorial.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sb-wt-intro-card {
        padding: 30px;
    }

    .sb-wt-editorial.reverse img {
        order: 0;
    }

    /* Reset order */
    .sb-wt-editorial.reverse blockquote {
        order: 1;
    }

    .sb-wt-collage-3 {
        grid-template-columns: 1fr;
    }

    .sb-wt-collage-3 img {
        height: 300px;
    }

    .sb-wt-collage-3 img:nth-child(2) {
        margin-top: 0;
    }

    .sb-wt-header h1 {
        font-size: 2.8rem;
    }
}

```