.weekly-insights {
    --weekly-ink: #361b16;
    --weekly-muted: #6d625d;
    --weekly-line: rgba(122, 26, 26, .14);
    --weekly-wash: #fff8f4;
    margin-top: clamp(36px, 6vw, 72px);
}

.weekly-insights-header,
.weekly-latest,
.weekly-column,
.weekly-archive {
    border: 1px solid var(--weekly-line);
    border-radius: 22px;
}

.weekly-insights-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    padding: clamp(24px, 4vw, 42px);
    background:
        radial-gradient(circle at 92% 12%, rgba(122, 26, 26, .12), transparent 31%),
        linear-gradient(135deg, #fffaf7, #fff 62%);
}

.weekly-insights-header h2,
.weekly-latest h3,
.weekly-column h3,
.weekly-archive h3 {
    color: var(--weekly-ink);
}

.weekly-insights-header h2 {
    margin: 6px 0 12px;
    font-size: clamp(1.8rem, 3.3vw, 3rem);
    line-height: 1.1;
}

.weekly-insights-header p:last-child {
    max-width: 760px;
    margin-bottom: 0;
    color: var(--weekly-muted);
    line-height: 1.8;
}

.weekly-status {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: #fff;
    color: #762019;
    font-size: .84rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(54, 27, 22, .08);
}

.weekly-status::before {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a93427;
    content: "";
}

.weekly-latest {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(240px, .55fr);
    gap: 24px;
    margin-top: 20px;
    padding: clamp(24px, 4vw, 38px);
    background: var(--weekly-ink);
    color: #fff;
}

.weekly-latest h3,
.weekly-latest p,
.weekly-latest a {
    color: #fff;
}

.weekly-latest h3 {
    margin: 8px 0 14px;
    font-size: clamp(1.45rem, 2.5vw, 2.25rem);
}

.weekly-latest-summary {
    max-width: 800px;
    color: rgba(255, 255, 255, .82) !important;
    line-height: 1.85;
}

.weekly-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
}

.weekly-meta div {
    min-height: 86px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
}

.weekly-meta span,
.weekly-meta strong {
    display: block;
}

.weekly-meta span {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, .62);
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.weekly-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.weekly-column {
    padding: clamp(22px, 3vw, 30px);
    background: #fff;
    box-shadow: 0 14px 38px rgba(54, 27, 22, .06);
}

.weekly-column h3 {
    margin: 6px 0 10px;
    font-size: 1.3rem;
}

.weekly-column-overview,
.weekly-column-placeholder {
    color: var(--weekly-muted);
    line-height: 1.75;
}

.weekly-items {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.weekly-item {
    padding: 17px 0;
    border-top: 1px solid var(--weekly-line);
}

.weekly-item:first-child {
    padding-top: 15px;
}

.weekly-item h4 {
    margin: 0 0 7px;
    color: var(--weekly-ink);
    font-size: 1rem;
    line-height: 1.5;
}

.weekly-item p {
    margin: 0 0 8px;
    color: var(--weekly-muted);
    line-height: 1.7;
}

.weekly-source {
    font-size: .82rem;
    font-weight: 700;
}

.weekly-placeholder-label {
    display: inline-flex;
    margin-top: 18px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--weekly-wash);
    color: #7a1f18;
    font-size: .78rem;
    font-weight: 700;
}

.weekly-archive {
    margin-top: 20px;
    padding: clamp(22px, 3vw, 30px);
    background: var(--weekly-wash);
}

.weekly-archive-list {
    display: grid;
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.weekly-archive-list a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 13px 0;
    border-top: 1px solid var(--weekly-line);
    color: var(--weekly-ink);
    font-weight: 700;
}

.weekly-method-note {
    margin-top: 18px;
    color: var(--weekly-muted);
    font-size: .88rem;
    line-height: 1.7;
}

.weekly-report-shell {
    max-width: 1060px;
}

.weekly-report-header {
    margin-bottom: 26px;
    padding: clamp(26px, 5vw, 50px);
    border-radius: 22px;
    background: linear-gradient(135deg, var(--weekly-ink), #6f241c);
    color: #fff;
}

.weekly-report-header h1,
.weekly-report-header p {
    color: #fff;
}

.weekly-report-section {
    margin-top: 22px;
    padding: clamp(22px, 4vw, 36px);
    border: 1px solid var(--weekly-line);
    border-radius: 22px;
    background: #fff;
}

@media (max-width: 760px) {
    .weekly-insights-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .weekly-latest,
    .weekly-columns {
        grid-template-columns: 1fr;
    }

    .weekly-archive-list a {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
