/* Health Tip — Banner Zone (wide & short zone, used for banner-top /
 * banner-bottom / triple-v layouts).
 *
 * Horizontal composition: silver clip on the LEFT, chipboard frame
 * with cream paper on the RIGHT — flipped from the main/sidebar/split
 * vertical layout but the same visual language. */

.health-banner-wrap {
    width: 100cqw;
    height: 100cqh;
    container-type: size;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2cqw;
    box-sizing: border-box;
    overflow: visible;
    background: transparent;
    color: #2a1f12;
    font-family: 'Geist Mono', 'Roboto Mono', monospace;
}

/* Silver clip on the LEFT — vertical orientation, in the flex flow
 * instead of absolute-overhanging like the vertical-layout variants. */
.health-banner-banner-block {
    flex: 0 0 auto;
    width: 18cqw;
    height: 80cqh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(to right,
            #f1f3f5 0%,
            #d4d8dd 30%,
            #abb0b6 65%,
            #7e8388 100%);
    border-radius: 0.5cqmin;
    box-shadow:
        0 0.7cqmin 1.4cqmin rgba(0, 0, 0, 0.38),
        inset 0.12cqmin 0 0 rgba(255, 255, 255, 0.7),
        inset 0 0 0 0.1cqmin rgba(70, 72, 76, 0.45);
    position: relative;
    padding: 10cqh 3.5cqw;
    box-sizing: border-box;
}

/* Two rivets on the left/right edges of the clip, vertically centered. */
.health-banner-banner-block::before,
.health-banner-banner-block::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 3cqmin;
    height: 3cqmin;
    border-radius: 50%;
    transform: translateY(-50%);
    background: radial-gradient(
        circle at 35% 35%,
        #ffffff 0%,
        #9a9ea3 35%,
        #4f5256 80%,
        #2c2e30 100%
    );
    box-shadow:
        0 0.12cqmin 0.3cqmin rgba(0, 0, 0, 0.55),
        inset 0 0 0 0.08cqmin rgba(40, 42, 44, 0.7);
}
.health-banner-banner-block::before { left: 8%; }
.health-banner-banner-block::after  { right: 8%; }

.health-banner-banner-fit {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.3em;
    line-height: 1;
    font-size: 5cqmin;
    width: max-content;
    max-width: 100%;
    text-align: center;
}

.health-banner-wrap .health-banner-header {
    font-family: 'Geist Mono', 'Roboto Mono', monospace;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #3b3d40;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
    text-shadow: 0 0.05cqmin 0 rgba(255, 255, 255, 0.55);
}

/* Chipboard frame on the RIGHT, with cream paper inside. */
.health-banner-paper {
    position: relative;
    /* clip(18cqw) + gap(2cqw) + chipboard(60cqw) = 80cqw total width. */
    flex: 0 0 60cqw;
    height: 80cqh;
    box-sizing: border-box;
    background: url("../img/chipboard.76bcddc62b07.svg") center / 100% 100% no-repeat,
                #a87439;
    border-radius: 4.5cqmin;
    isolation: isolate;
    padding: 9cqmin;
    overflow: visible;
    box-shadow: 0 1.2cqmin 2.4cqmin rgba(0, 0, 0, 0.32);
}

/* Cream paper sheet sitting on top of the chipboard. */
.health-banner-paper::before {
    content: "";
    position: absolute;
    inset: 9cqmin;
    background: #fbf7ec;
    box-shadow:
        0 0.8cqmin 1.6cqmin rgba(0, 0, 0, 0.7),
        0 0.3cqmin 0.6cqmin rgba(0, 0, 0, 0.45);
}

/* Content area inside the cream paper. */
.health-banner-paper-block {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 4cqh 4cqw;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.health-banner-wrap .health-banner-body {
    font-size: inherit;
    line-height: 1.35;
    font-family: 'Georgia', serif;
    text-align: start;
}

.health-banner-wrap .health-banner-headline {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-size: 1.35em;
    font-weight: 700;
    line-height: 1.08;
    color: #2a1f12;
    letter-spacing: -0.005em;
    margin-bottom: 0.25em;
}

.health-banner-wrap .health-banner-headline-icon {
    color: #c0392b;
    font-size: 0.85em;
    margin-right: 0.4em;
    vertical-align: baseline;
}

.health-banner-wrap .health-banner-category {
    font-family: 'Georgia', serif;
    font-size: 0.62em;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #6b4d2a;
    opacity: 0.85;
    margin-bottom: 0.7em;
    font-style: normal;
    line-height: 1;
}

.health-banner-wrap .health-banner-text {
    font-family: 'Georgia', serif;
    font-size: 1em;
    line-height: 1.4;
    color: #2a1f12;
}

.health-banner-wrap .health-banner-source {
    font-family: 'Georgia', serif;
    font-size: 0.7em;
    line-height: 1.35;
    margin-top: 0.6em;
    color: #2a1f12;
    opacity: 0.7;
    text-align: start;
}
