/* ==========================================================================
   02 — Typography
   --------------------------------------------------------------------------
   Heading sizes, font styles, responsive type, and text utility classes.
   ========================================================================== */


/* --- Heading Sizes (global responsive overrides) --- */

@media (min-width: 768px) {
    .h3, h3 {
        font-size: 4.5rem;
    }
}

@media (min-width: 1157px) {
    .h3, h3 {
        font-size: 6rem;
    }
}


/* --- Blog / Post Content Headings --- */

.post-content .content h2:not(.h3) {
    font-size: 4rem;
    margin-bottom: 0.5em;
}

.post-content .content h3:not(.h3) {
    font-size: 3rem;
    margin-bottom: 1em;
    margin-top: 1em;
}

/* When a post-content heading has the .h3 utility class applied,
   keep the global .h3 font-size but tighten the bottom margin to 0.5em
   (overrides style.css's `.post-content .content h1-6 { margin-bottom: 1.5em }`) */
.post-content .content h2.h3,
.post-content .content h3.h3 {
    margin-bottom: 0.5em;
}


/* --- Eyebrow --- */

.eyebrow {
    display: block;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-teal);
    margin-bottom: 0.75rem;
}


/* --- Responsive Heading Utilities --- */

.responsive-h3 {
    font-size: clamp(30px, 3vw, 55px);
}

.responsive-h4 {
    margin-bottom: 1em;
    font-size: clamp(18px, 1.45vw, 26px);
}


/* --- Display / Outline Text --- */

.outline-text {
    font-family: rift, sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1;
    font-size: 6rem !important;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 1px rgb(0 0 0);
}


/* --- Color Utilities --- */

.pink-text {
    color: #d45180;
}

.four-m-pink {
    color: #d45180;
}

.lt-blue-4m {
    color: #00b4e0;
}

.pink-h3-big {
    color: #d45180;
    font-size: 2.4em;
}

.retro {
    text-shadow: 2px 2px 0 #ffa7c7, 4px 4px 0 #ffbcd3, 2px 2px 2px rgba(206, 89, 55, 0);
    color: #D65282;
}


/* --- Blockquote --- */

.blockquote-dynamik {
    border-left: 2px solid #00B8B0 !important;
    padding: 0 0.5em;
    margin: 1em 10px;
    color: #005F62;
    font-size: 26px !important;
    line-height: 118%;
    font-weight: 700;
}


/* --- Text Transform --- */

.lowercase {
    text-transform: lowercase !important;
}


/* --- Small Text --- */

.asterik-retro {
    font: bold 0.55em/1 sans-serif;
}

.asterik {
    font-size: 12px;
}
