/* ============================================================
   Notable Men — The Blueprint (/the-blueprint)
   Editorial hero + masterclass cards listing.
   ============================================================ */

.ntm-blueprint {
    background: #fff;
    color: #121212;
    font-family: "Helvetica Neue", "Helvetica", Arial, system-ui, sans-serif;
}

/* ---------- Hero ---------- */

.ntm-blueprint__hero {
    position: relative;
    overflow: hidden;
    background: #161616;
    color: #fff;
    padding: 120px 24px;
}

.ntm-blueprint__hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 332px;
    height: 332px;
    margin: -166px 0 0 -166px;
    border-radius: 50%;
    background: rgba(53, 172, 180, 0.3);
    filter: blur(149.55px);
    z-index: 0;
    pointer-events: none;
}

.ntm-blueprint__hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.ntm-blueprint__hero-the-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 19px;
    width: 100%;
    max-width: 386px;
    margin-bottom: 3px;
}

.ntm-blueprint__hero-rule {
    flex: 1 1 136px;
    max-width: 136px;
    height: 0;
    border-top: 2px solid #2A8B94;
}

.ntm-blueprint__hero-the {
    flex: 0 0 auto;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 400;
    font-size: 50px;
    line-height: 69px;
    color: #fff;
}

.ntm-blueprint__hero-title {
    margin: 0;
    font-family: "Fraunces", Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 96px;
    line-height: 1;
    letter-spacing: 2px;
    color: #2A8B94;
    text-align: center;
}

.ntm-blueprint__hero-tagline {
    margin: 32px auto 24px;
    max-width: 766px;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: -1px;
    color: #fff;
    text-align: center;
}

.ntm-blueprint__hero-description {
    margin: 0 auto;
    max-width: 660px;
    font-family: "Helvetica Neue", "Helvetica", Arial, system-ui, sans-serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 29px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
}

/* ---------- Cards ---------- */

.ntm-blueprint__cards {
    background: #fff;
    padding: 128px 24px;
}

.ntm-blueprint__cards-inner {
    max-width: 1034px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.ntm-blueprint__card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.ntm-blueprint__card-link:hover .ntm-blueprint__card,
.ntm-blueprint__card-link:focus-visible .ntm-blueprint__card {
    border-color: #2A8B94;
}

.ntm-blueprint__card {
    display: grid;
    grid-template-columns: 215px 1fr;
    gap: 40px;
    align-items: center;
    padding: 50px 60px;
    background: #F8F6F1;
    border: 1px solid rgba(0, 0, 0, 0.15);
    transition: border-color 0.2s ease;
}

.ntm-blueprint__card-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.ntm-blueprint__contributors-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 8px 16px;
    border: 1px solid #2A8B94;
    background: rgba(255, 255, 255, 0.01);
    font-family: "Helvetica Neue", "Helvetica", Arial, system-ui, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
    letter-spacing: 0.03em;
    color: #121212;
}

.ntm-blueprint__avatars {
    display: flex;
    align-items: center;
}

.ntm-blueprint__avatar {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    background: #eee;
}

.ntm-blueprint__avatar + .ntm-blueprint__avatar {
    margin-left: -15px;
}

.ntm-blueprint__card-right {
    min-width: 0;
}

.ntm-blueprint__card-title {
    margin: 0 0 32px;
    font-family: "Fraunces", Georgia, serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 49px;
    letter-spacing: -1px;
    color: #121212;
}

.ntm-blueprint__card-description {
    margin: 0;
    padding-left: 18px;
    border-left: 2px solid #2A8B94;
    font-family: "Helvetica Neue", "Helvetica", Arial, system-ui, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 1px;
    color: #121212;
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .ntm-blueprint__hero {
        padding: 80px 20px;
    }

    .ntm-blueprint__hero-title {
        font-size: 72px;
    }

    .ntm-blueprint__hero-tagline {
        font-size: 32px;
        line-height: 40px;
    }

    .ntm-blueprint__hero-rule {
        flex-basis: 80px;
        max-width: 80px;
    }

    .ntm-blueprint__cards {
        padding: 80px 20px;
    }

    .ntm-blueprint__card {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 32px;
    }

    .ntm-blueprint__card-title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 24px;
    }
}

@media (max-width: 640px) {
    .ntm-blueprint__hero {
        padding: 60px 16px;
    }

    .ntm-blueprint__hero-the-row {
        gap: 0;
    }

    .ntm-blueprint__hero-rule {
        display: none;
    }

    .ntm-blueprint__hero-the {
        font-size: 36px;
        line-height: 1.2;
    }

    .ntm-blueprint__hero-title {
        font-size: 56px;
        letter-spacing: 1px;
    }

    .ntm-blueprint__hero-tagline {
        margin-top: 20px;
        font-size: 24px;
        line-height: 32px;
    }

    .ntm-blueprint__hero-description {
        font-size: 18px;
        line-height: 25px;
    }

    .ntm-blueprint__cards {
        padding: 60px 16px;
    }

    .ntm-blueprint__card {
        padding: 32px 24px;
    }

    .ntm-blueprint__card-title {
        font-size: 26px;
        line-height: 34px;
    }

    .ntm-blueprint__card-description {
        font-size: 16px;
        line-height: 22px;
    }

    .ntm-blueprint__avatar {
        width: 48px;
        height: 48px;
    }

    .ntm-blueprint__avatar + .ntm-blueprint__avatar {
        margin-left: -12px;
    }
}
