/* Custom collection hero — scoped entirely to .collection-hero, zero bleed to anything else */
.collection-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 280px 0 80px;
    margin-bottom: 100px;
}

.collection-hero-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 200px;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
}

.collection-hero-left {
    flex: 0 0 28%;
    min-width: 0;
}

.collection-hero-right {
    flex: 1 1 auto;
    min-width: 0;
}

.collection-hero-right h1.h2 {
    margin: 0 0 24px;
    color: #fff;
    font-size: 50px;
    line-height: 1.15;
}

.collection-hero-right h5 {
    color: #fff;
    font-size: 36px;
    line-height: 1.4;
    font-weight: 400;
}

.collection-hero .truncate-text {
    color: #fff;
    font-size: 22px;
    line-height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}

.collection-hero .truncate-text.show-full-text {
    -webkit-line-clamp: unset;
    display: block;
}

.collection-hero .truncate-text p {
    font-size: 22px;
    line-height: 40px;
    margin: 0 0 16px;
}

/* Show More/Less — sky blue link with hover fade */
.collection-hero .truncate-toggle {
    color: #5dade2;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 16px;
    display: inline-block;
    transition: opacity 0.2s ease;
}

.collection-hero .truncate-toggle:hover {
    opacity: 0.7;
}

.collection-hero .truncate-toggle.hide-element {
    display: none;
}

/* SVG star bullets for lists inside the content */
.collection-hero-right .truncate-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.collection-hero-right .truncate-text ul li {
    position: relative;
    padding-left: 40px;
    margin-bottom: 15px;
    font-size: 22px;
    line-height: 40px;
}

.collection-hero-right .truncate-text ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 28px;
    height: 28px;
    background-image: url('../images/ico-star.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 1440px) {
    .collection-hero-inner {
        padding: 0 50px;
        gap: 80px;
    }
    .collection-hero-right h1.h2 {
        font-size: 44px;
    }
    .collection-hero-right h5 {
        font-size: 30px;
    }
    .collection-hero .truncate-text,
    .collection-hero .truncate-text p {
        line-height: 35px;
    }
}

@media (max-width: 1200px) {
    .collection-hero {
        padding: 140px 0 60px;
    }
    .collection-hero-inner {
        gap: 60px;
    }
    .collection-hero-left {
        flex: 0 0 32%;
    }
    .collection-hero-right h1.h2 {
        font-size: 38px;
    }
    .collection-hero-right h5 {
        font-size: 26px;
    }
}

/* Stack on mobile — right column (Title/Quote/Content) on top, left column (Intro) below */
@media (max-width: 1024px) {
    .collection-hero-inner {
        flex-direction: column-reverse;
        gap: 40px;
        padding: 0 40px;
    }
    .collection-hero-left,
    .collection-hero-right {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .collection-hero {
        padding: 140px 0 40px;
        margin-bottom: 60px;
    }
    .collection-hero-inner {
        padding: 0 24px;
        gap: 32px;
    }
    .collection-hero-right h1.h2 {
        font-size: 32px;
    }
    .collection-hero-right h5 {
        font-size: 22px;
    }
    .collection-hero .truncate-text,
    .collection-hero .truncate-text p {
        font-size: 18px;
        line-height: 30px;
    }
    .collection-hero-right .truncate-text ul li {
        font-size: 18px;
        line-height: 30px;
        padding-left: 32px;
    }
    .collection-hero-right .truncate-text ul li::before {
        width: 18px;
        height: 18px;
        top: 5px;
    }
}