.tse-hero{
    font-family:var(--sans);

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;

    max-width:1280px;
    margin:0 auto;

    padding:70px 60px;
    gap:70px;

    min-height:86vh;
}

.tse-hero-label{
    font-size:12px;
    font-weight:600;
    letter-spacing:.22em;
    text-transform:uppercase;

    color:var(--navy);

    margin-bottom:22px;

    display:flex;
    align-items:center;
    gap:12px;
}

.tse-hero-label::before{
    content:'';
    width:32px;
    height:2px;
    background:var(--navy);
}

.tse-hero-title{
    font-family:var(--serif);

    font-size:clamp(42px,5vw,68px);
    font-weight:900;

    line-height:1.07;

    color:var(--navy);

    margin-bottom:24px;

    letter-spacing:-0.02em;
}

.tse-hero-title em{
    font-style:italic;
}

.tse-hero-sub{
    font-size:17px;
    font-weight:300;

    color:var(--muted);

    line-height:1.75;

    margin-bottom:38px;
    max-width:500px;
}

.tse-hero-cta{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:var(--navy);
    color:white;

    padding:16px 36px;

    text-decoration:none;
    font-weight:600;

    transition:.2s;
}

.tse-hero-cta:hover{
    background:var(--navy-hover);
}

.tse-issue-meta{
    display:flex;
    align-items:center;
    gap:14px;

    margin-top:34px;
    padding-top:34px;

    border-top:1px solid var(--gray);

    font-size:13px;
    color:var(--muted);
}

.tse-issue-meta strong{
    color:var(--text);
}

.tse-dot{
    width:4px;
    height:4px;
    border-radius:50%;
    background:#cfcfcf;
}

.tse-cover-area{
    display:flex;
    justify-content:center;
}

.tse-cover-wrap{
    position:relative;
    max-width:390px;
    width:100%;
}

.tse-cover-shadow{
    position:absolute;
    inset:18px -16px -16px 16px;

    background:var(--navy);
    opacity:.13;
}

.tse-cover-wrap img{
    position:relative;
    width:100%;
    display:block;

    box-shadow:0 20px 60px rgba(26,31,143,.18);
}

@media(max-width:900px){

    .tse-hero{
        grid-template-columns:1fr;
        padding:40px 20px;
        gap:40px;
        min-height:auto;
    }

}

/* ── Get involved ── */
.tse-involve {
    background: #f0ede8;
    padding: 80px 60px;
}

.tse-involve-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    text-align: center;
    color: var(--text);
    margin-bottom: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.tse-involve-title::before,
.tse-involve-title::after {
    content: '';
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: #b8b0a4;
}

.tse-involve-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.tse-involve-card {
    display: flex;
    flex-direction: column;
    background: white;
    border: 1px solid #ddd8d2;
    text-decoration: none;
    color: inherit;
    position: relative;
    transition: box-shadow .2s;
}

.tse-involve-card:hover {
    box-shadow: 0 8px 32px rgba(26,31,143,.12);
    z-index: 1;
}

.tse-involve-card-top {
    height: 4px;
    background: var(--navy);
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: relative;
}

.tse-involve-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--navy);
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    padding: 5px 12px;
}

.tse-involve-card-body {
    padding: 32px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.tse-involve-card-body h3 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
}

.tse-involve-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
    flex: 1;
}

.tse-involve-cta {
    display: inline-block;
    border: 1.5px solid var(--navy);
    color: var(--navy);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    padding: 10px 18px;
    margin-top: 8px;
    transition: background .15s, color .15s;
    align-self: flex-start;
}

.tse-involve-card:hover .tse-involve-cta {
    background: var(--navy);
    color: white;
}

@media (max-width: 700px) {
    .tse-involve { padding: 60px 20px; }
    .tse-involve-grid { grid-template-columns: 1fr; }
}