@font-face {
    font-family: "Dancing Script Local";
    src: url("/assets/fonts/dancing-script/dancing-script-600.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Dancing Script Local";
    src: url("/assets/fonts/dancing-script/dancing-script-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --ds-ink: #111111;
    --ds-muted: #5d6067;
    --ds-wine: #111111;
    --ds-red: #a20d24;
    --ds-rose: #f2f2ef;
    --ds-cream: #fbfbf8;
    --ds-paper: #ffffff;
    --ds-line: #d8d8d2;
    --ds-shadow: 0 18px 50px rgba(17, 17, 17, .08);
    --ds-radius: 2px;
    --ds-serif: Georgia, "Times New Roman", serif;
    --ds-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --ds-script: Georgia, "Times New Roman", serif;
    --ds-content-width: 800px;
    --ds-sidebar-width: 300px;
    --ds-layout-gap: 32px;
    --ds-page-gutter: 24px;
    --ds-shell-width: calc(var(--ds-content-width) + var(--ds-sidebar-width) + var(--ds-layout-gap));
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ds-ink);
    font-family: var(--ds-sans);
    background:
        radial-gradient(circle at 15% 0%, rgba(231, 76, 60, .12), transparent 28rem),
        linear-gradient(180deg, var(--ds-cream), #fff 24rem);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    width: min(calc(100% - var(--ds-page-gutter) - var(--ds-page-gutter)), var(--ds-shell-width));
    max-width: none;
    margin: 0 auto;
    padding: 30px 0 22px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand__mark {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    font-family: var(--ds-serif);
    font-size: 30px;
    font-style: italic;
    background: linear-gradient(135deg, var(--ds-wine), var(--ds-red));
    box-shadow: 0 12px 28px rgba(127, 31, 38, .24);
}

.brand__text {
    font-family: var(--ds-serif);
    font-size: clamp(28px, 4vw, 46px);
    line-height: .9;
    color: var(--ds-wine);
}

.brand__text span {
    display: block;
    color: var(--ds-red);
    font-size: .72em;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 16px;
    color: var(--ds-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.site-nav a:hover,
.eyebrow:hover {
    color: var(--ds-red);
}

.site-search {
    position: relative;
    justify-self: end;
}

.site-search summary {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--ds-line);
    border-radius: 50%;
    color: var(--ds-wine);
    background: rgba(255, 255, 255, .78);
    cursor: pointer;
    list-style: none;
}

.site-search summary::-webkit-details-marker {
    display: none;
}

.site-search[open] summary {
    color: #fff;
    border-color: transparent;
    background: var(--ds-wine);
}

.site-search__form {
    position: absolute;
    z-index: 20;
    top: calc(100% + 14px);
    right: 0;
    display: grid;
    width: min(calc(100vw - var(--ds-page-gutter) - var(--ds-page-gutter)), var(--ds-shell-width));
    gap: 10px;
    border: 1px solid var(--ds-line);
    border-radius: 22px;
    padding: 16px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--ds-shadow);
}

.site-search__label {
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.site-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.site-search__row input {
    width: 100%;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 13px 16px;
    background: var(--ds-cream);
}

.site-search__row button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 0 16px;
    color: #fff;
    font-weight: 800;
    background: var(--ds-wine);
    cursor: pointer;
}

.site-search__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

main {
    width: min(calc(100% - var(--ds-page-gutter) - var(--ds-page-gutter)), var(--ds-shell-width));
    max-width: none;
    margin: 0 auto;
    padding: 0 0 48px;
}

.hero {
    margin: 20px 0 34px;
}

.article-card {
    overflow: hidden;
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 12px 42px rgba(127, 31, 38, .08);
}

.article-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 25%, rgba(231, 76, 60, .08), transparent 16rem),
        var(--ds-rose);
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.article-card:not(.article-card--hero) .article-card__image img {
    object-fit: contain;
}

.article-card:hover .article-card__image img {
    transform: scale(1.04);
}

.article-card:not(.article-card--hero):hover .article-card__image img {
    transform: none;
}

.article-card__body {
    padding: 22px;
}

.article-card h2,
.article-detail h1,
.page-title h1,
.sidebar-box h2,
.interaction-card h2 {
    margin: 0;
    font-family: var(--ds-serif);
    line-height: 1.08;
}

.article-card h2 {
    font-size: clamp(22px, 2.5vw, 32px);
}

.article-card p,
.article-content,
.empty-state p {
    color: var(--ds-muted);
    line-height: 1.75;
}

.article-card time,
.article-detail time {
    display: inline-block;
    margin-top: 12px;
    color: var(--ds-muted);
    font-size: 13px;
}

.article-card--hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    min-height: 460px;
    border: 0;
    background: linear-gradient(135deg, rgba(127, 31, 38, .96), rgba(231, 76, 60, .88));
    box-shadow: var(--ds-shadow);
}

.article-card--hero .article-card__image {
    aspect-ratio: auto;
}

.article-card--hero .article-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    padding: clamp(28px, 5vw, 58px);
}

.article-card--hero p,
.article-card--hero time {
    color: rgba(255, 255, 255, .84);
}

.article-card--hero .eyebrow {
    color: #fff;
    border-color: rgba(255, 255, 255, .34);
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, var(--ds-content-width)) var(--ds-sidebar-width);
    gap: var(--ds-layout-gap);
    align-items: start;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.article-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.article-main {
    min-width: 0;
}

.layout--article {
    align-items: start;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 12px;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 6px 11px;
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.sidebar {
    position: sticky;
    top: 18px;
    display: grid;
    gap: 20px;
}

.sidebar-box {
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    padding: 20px;
    background: rgba(255, 255, 255, .78);
}

.sidebar-box h2 {
    margin-bottom: 16px;
    color: var(--ds-wine);
}

.sidebar-box--ad {
    border: 0;
    padding: 0;
    background: transparent;
}

.sidebar-box--ad h2 {
    margin: 0 0 10px;
    padding: 0 2px;
}

.company-box {
    display: grid;
    gap: 14px;
}

.company-box--article {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 30px;
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    padding: 14px 16px;
    background: rgba(255, 255, 255, .82);
}

.company-box__summary {
    display: grid;
    min-width: 0;
    gap: 3px;
}

.company-box h2 {
    margin-bottom: 0;
}

.company-box__eyebrow {
    margin: 0;
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.company-box__name {
    display: block;
    color: var(--ds-wine);
    font-weight: 800;
}

.company-box__text {
    margin: 0;
    color: var(--ds-muted);
    line-height: 1.7;
}

.company-box--article .company-box__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.company-box__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.company-box__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 7px 10px;
    color: var(--ds-wine);
    font-size: 13px;
    font-weight: 700;
    background: rgba(255, 255, 255, .72);
}

.company-box__link:hover {
    color: var(--ds-red);
    border-color: rgba(166, 55, 68, .35);
}

.company-box__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 0 5px;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    background: var(--ds-wine);
}

.company-box__link--website_url .company-box__icon {
    background: #6d5960;
}

.company-box__link--link_linkedin .company-box__icon {
    background: #0a66c2;
}

.company-box__link--link_x .company-box__icon {
    background: #111;
}

.company-box__link--link_fb .company-box__icon {
    background: #1877f2;
}

.company-box__link--link_ig .company-box__icon {
    background: #c13584;
}

.company-box__link--link_youtube .company-box__icon {
    background: #d71920;
}

.today-box {
    display: grid;
    gap: 12px;
}

.today-box h2 {
    margin-bottom: 0;
}

.today-box__list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.today-box__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ds-muted);
    line-height: 1.45;
}

.today-box__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: inherit;
}

.today-box__link:hover .today-box__name {
    color: var(--ds-red);
}

.today-box__name {
    min-width: 0;
}

.today-box__icon {
    display: inline-grid;
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    color: var(--ds-red);
    font-size: 14px;
    background: var(--ds-rose);
}

.today-box__icon i {
    line-height: 1;
}

.today-box--salutations .today-box__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.today-box--salutations .today-box__list li {
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 6px 10px;
    color: var(--ds-wine);
    font-weight: 800;
    background: rgba(255, 255, 255, .72);
}

.today-box__wish,
.contest-result__congrats,
.calendar-detail__lead {
    font-family: var(--ds-script);
    font-weight: 700;
    line-height: 1.15;
}

.today-box__wish {
    margin: 2px 0 0;
    color: var(--ds-wine);
    font-size: 24px;
}

.today-box__wish strong {
    color: var(--ds-red);
}

.today-box__wish a {
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.today-box__wish a:hover {
    color: var(--ds-red);
}

.name-directory-box {
    padding: 16px;
}

.name-directory-box h2 {
    margin-bottom: 10px;
    font-size: 22px;
    line-height: 1.05;
}

.name-directory-box__wish {
    border-bottom: 1px solid var(--ds-line);
    margin: 0 0 12px;
    padding-bottom: 12px;
}

.name-directory-box__main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 9px 12px;
    color: var(--ds-wine);
    font-weight: 800;
    background: rgba(255, 255, 255, .72);
}

.name-directory-box__main::after {
    color: var(--ds-red);
    content: "→";
}

.name-directory-box__main:hover {
    color: var(--ds-red);
    border-color: rgba(231, 76, 60, .3);
}

.daily-wisdom-box {
    display: grid;
    gap: 10px;
    border-color: rgba(127, 31, 38, .18);
    background: linear-gradient(145deg, #fff, var(--ds-rose));
}

.daily-wisdom-box h2 {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 1.05;
}

.daily-wisdom-box__quote {
    margin: 0;
    color: var(--ds-wine);
    font-family: var(--ds-script);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.12;
}

.daily-wisdom-box__quote::before {
    content: "„";
}

.daily-wisdom-box__quote::after {
    content: "“";
}

.daily-wisdom-box__category {
    width: fit-content;
    margin: 2px 0 0;
    border: 1px solid rgba(231, 76, 60, .24);
    border-radius: 999px;
    padding: 5px 9px;
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, .72);
}

.horoscope-box {
    padding: 14px;
}

.horoscope-box h2 {
    margin-bottom: 9px;
    font-size: 22px;
    line-height: 1.05;
}

.horoscope-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.horoscope-link {
    position: relative;
    display: grid;
    min-width: 0;
    place-items: center;
    border-radius: 50%;
    color: var(--ds-wine);
    transition: color .2s ease, transform .2s ease, background-color .2s ease;
}

.horoscope-link:hover {
    color: var(--ds-red);
    background: var(--ds-rose);
    transform: translateY(-1px);
}

.horoscope-link::after {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    z-index: 5;
    border-radius: 999px;
    padding: 5px 9px;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    background: var(--ds-wine);
    box-shadow: 0 8px 18px rgba(127, 31, 38, .16);
    content: attr(data-sign);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 4px);
    transition: opacity .16s ease, transform .16s ease;
}

.horoscope-link:hover::after,
.horoscope-link:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.horoscope-link__icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border: 1px solid rgba(231, 76, 60, .22);
    border-radius: 50%;
    color: var(--ds-red);
    background: rgba(255, 241, 240, .72);
    transition: color .2s ease, border-color .2s ease, background-color .2s ease;
}

.horoscope-link:hover .horoscope-link__icon {
    border-color: rgba(127, 31, 38, .28);
    color: var(--ds-wine);
    background: #fff;
}

.horoscope-link__icon svg {
    width: 34px;
    height: 34px;
    overflow: visible;
}

.category-pill,
.mini-link {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--ds-line);
    padding: 12px 0;
    color: var(--ds-muted);
}

.category-pill:hover,
.mini-link:hover {
    color: var(--ds-red);
}

.ad-card,
.contest-teaser {
    display: grid;
    gap: 10px;
    color: inherit;
}

.ad-card {
    overflow: hidden;
    border: 1px solid rgba(127, 31, 38, .14);
    border-radius: 20px;
    background: linear-gradient(145deg, #fff, var(--ds-rose));
}

.ad-card + .ad-card {
    margin-top: 14px;
}

.article-ad {
    margin-top: 18px;
}

.ad-card img {
    width: 100%;
    height: auto;
}

.ad-card--content,
.ad-card--sidebar {
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.ad-card--content {
    max-width: var(--ds-content-width);
    aspect-ratio: 4 / 1;
}

.ad-card--content img,
.ad-card--content .ad-card__script {
    width: 100%;
    height: 100%;
}

.ad-card--content img {
    object-fit: cover;
}

.ad-card--sidebar {
    max-width: var(--ds-sidebar-width);
}

.ad-card--sidebar img {
    width: 100%;
    height: auto;
}

.ad-card--empty {
    padding: 20px;
}

.ad-card--content.ad-card--empty,
.ad-card--sidebar.ad-card--empty {
    display: grid;
    place-content: center;
    border: 1px dashed rgba(127, 31, 38, .2);
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 241, 240, .7);
}

.ad-card--content.ad-card--empty {
    min-height: 200px;
}

.ad-card--sidebar.ad-card--empty {
    min-height: 300px;
}

.ad-card--empty span,
.contest-teaser small,
.contest-teaser time,
.contest-teaser__status {
    color: var(--ds-muted);
    font-size: 13px;
}

.ad-card--empty strong {
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 24px;
}

.ad-card__fallback,
.ad-card__script {
    padding: 18px;
}

.contest-teaser {
    border-top: 1px solid var(--ds-line);
    border-radius: 0;
    padding: 16px 0;
}

.contest-teaser:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.contest-teaser img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    object-fit: contain;
    background: var(--ds-rose);
}

.contest-teaser .eyebrow {
    margin-bottom: 0;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.contest-teaser strong {
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 21px;
    line-height: 1.12;
}

.contest-teaser--empty {
    border-top: 0;
    padding: 0;
}

.contest-teaser--ended img {
    opacity: .82;
}

.contest-teaser__status {
    color: var(--ds-red);
    font-weight: 800;
}

.page-title {
    margin: 26px 0 28px;
    border-radius: var(--ds-radius);
    padding: 34px;
    background: var(--ds-rose);
}

.article-detail {
    max-width: var(--ds-content-width);
    margin: 18px auto 0;
}

.layout--article .article-detail {
    margin-top: 0;
}

.layout--article .calendar-detail {
    margin-top: 0;
}

.layout--article .article-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-detail__header {
    text-align: center;
    margin-bottom: 26px;
}

.article-detail__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.article-detail h1 {
    margin: 10px 0;
    font-size: clamp(36px, 6vw, 68px);
    color: var(--ds-wine);
}

.article-hero-image,
.article-figure {
    overflow: hidden;
    margin: 0 0 28px;
    border-radius: var(--ds-radius);
    background: var(--ds-rose);
}

.article-hero-image img,
.article-figure img {
    display: block;
    width: 100%;
}

.article-figure--portrait,
.article-figure--tall,
.article-figure--long {
    display: grid;
    justify-items: center;
    padding: 18px;
}

.article-figure--portrait img,
.article-figure--tall img,
.article-figure--long img {
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.article-figure--portrait img {
    max-height: 760px;
}

.article-figure--tall img {
    max-height: 660px;
}

.article-figure--long img {
    max-width: min(100%, 440px);
    max-height: 560px;
}

.article-figure figcaption {
    width: 100%;
    padding: 10px 16px;
    color: var(--ds-muted);
    font-size: 13px;
}

.article-gallery {
    display: grid;
    gap: 14px;
    margin: 0 0 28px;
}

.article-gallery--pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-gallery--triptych {
    grid-template-columns: 1.15fr .85fr;
}

.article-gallery--triptych .article-gallery__item:first-child {
    grid-row: span 2;
}

.article-gallery--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.article-gallery--has-tall {
    align-items: start;
}

.article-gallery__item {
    overflow: hidden;
    display: grid;
    align-content: center;
    min-height: 210px;
    margin: 0;
    border-radius: 20px;
    background: var(--ds-rose);
}

.article-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 430px;
    object-fit: contain;
}

.article-gallery__item--wide img,
.article-gallery__item--landscape img {
    aspect-ratio: 4 / 3;
}

.article-gallery__item--portrait img,
.article-gallery__item--tall img,
.article-gallery__item--long img {
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

.article-gallery__item--tall img,
.article-gallery__item--long img {
    max-height: 520px;
}

.article-gallery__item--long img {
    max-width: min(100%, 320px);
}

.article-gallery__item figcaption {
    padding: 9px 12px;
    color: var(--ds-muted);
    font-size: 12px;
}

.article-content {
    font-size: 18px;
}

.article-content__text a {
    color: var(--ds-red);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content__text ul,
.article-content__text ol {
    padding-left: 1.3em;
}

.article-quote,
.conversation-block,
.interaction-card,
.event-block,
.link-card,
.code-block {
    margin: 30px 0;
    border-radius: var(--ds-radius);
    padding: 26px;
    background: var(--ds-rose);
}

.article-quote {
    border-left: 6px solid var(--ds-red);
    font-family: var(--ds-serif);
    font-size: 24px;
    color: var(--ds-wine);
}

.article-quote cite {
    display: block;
    margin-top: 12px;
    color: var(--ds-muted);
    font-family: var(--ds-sans);
    font-size: 14px;
}

.conversation-block__ask {
    color: var(--ds-wine);
    font-weight: 700;
}

.interaction-card {
    border: 1px solid var(--ds-line);
    background: #fff;
    box-shadow: 0 16px 46px rgba(127, 31, 38, .08);
}

.embed-block {
    overflow: hidden;
    margin: 30px 0;
    border-radius: var(--ds-radius);
    background: var(--ds-ink);
}

.embed-block iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
}

.code-block {
    overflow-x: auto;
    color: #fff;
    font-size: 15px;
    line-height: 1.65;
    background: #221619;
}

.link-card,
.event-block {
    border: 1px solid var(--ds-line);
    background: rgba(255, 255, 255, .86);
}

.link-card span {
    display: block;
    margin-bottom: 8px;
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.link-card a {
    color: var(--ds-wine);
    overflow-wrap: anywhere;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.event-block h2 {
    margin: 0 0 12px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
}

.event-block p {
    margin: 8px 0;
    color: var(--ds-muted);
}

.editor-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 820px;
    margin: 0 auto 18px;
    border: 1px solid rgba(127, 31, 38, .2);
    border-radius: 18px;
    padding: 12px 14px;
    color: var(--ds-wine);
    background: rgba(255, 241, 240, .9);
}

.editor-bar a {
    display: inline-flex;
    border-radius: 999px;
    padding: 9px 14px;
    color: #fff;
    font-weight: 700;
    background: var(--ds-wine);
}

.interaction-card__form {
    display: grid;
    gap: 12px;
}

.interaction-card__form--grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.interaction-card__status {
    margin: 14px 0 0;
    color: var(--ds-muted);
    font-weight: 700;
}

.interaction-card__status--ended {
    color: var(--ds-red);
}

.contest-result {
    position: relative;
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid rgba(127, 31, 38, .18);
    border-radius: 24px;
    padding: clamp(20px, 4vw, 30px);
    color: var(--ds-muted);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(255, 241, 240, .9)),
        radial-gradient(circle at 92% 8%, rgba(231, 76, 60, .2), transparent 16rem);
    box-shadow: 0 18px 48px rgba(127, 31, 38, .12);
}

.contest-result:not(.contest-result--pending)::before {
    content: "";
    position: absolute;
    top: -78px;
    right: -54px;
    width: 190px;
    height: 190px;
    border: 1px solid rgba(127, 31, 38, .1);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, .58) 0 34%, transparent 35%),
        repeating-conic-gradient(from 8deg, rgba(127, 31, 38, .1) 0 7deg, transparent 7deg 15deg);
    pointer-events: none;
}

.contest-result__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.contest-result__seal {
    display: grid;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    color: #fff;
    font-family: var(--ds-serif);
    font-size: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ds-wine), var(--ds-red));
    box-shadow: 0 13px 30px rgba(127, 31, 38, .24);
}

.contest-result__eyebrow {
    margin: 0 0 4px;
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.contest-result h3 {
    margin: 0;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: clamp(27px, 4vw, 36px);
    line-height: 1.02;
}

.contest-result__body {
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.contest-result__congrats {
    margin: 0 0 16px;
    color: var(--ds-wine);
    font-size: clamp(26px, 3vw, 34px);
}

.contest-result__winners {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    counter-reset: winners;
    list-style: none;
}

.contest-result__winners li {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(127, 31, 38, .13);
    border-radius: 17px;
    padding: 11px 14px;
    color: var(--ds-ink);
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 10px 26px rgba(127, 31, 38, .06);
    counter-increment: winners;
}

.contest-result__winners li::before {
    content: counter(winners);
    display: grid;
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 18px;
    font-weight: 700;
    background: var(--ds-rose);
}

.contest-result__winners span {
    font-weight: 700;
}

.contest-result__date {
    position: relative;
    z-index: 1;
    display: inline-flex;
    margin-top: 15px;
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--ds-muted);
    background: rgba(255, 255, 255, .66);
}

.contest-result--pending {
    font-weight: 700;
}

.choice-row {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--ds-line);
    border-radius: 16px;
    padding: 12px 14px;
    background: var(--ds-cream);
}

.choice-row--full {
    grid-column: 1 / -1;
}

.choice-row--newsletter {
    background: rgba(255, 255, 255, .78);
}

.input {
    width: 100%;
    border: 1px solid var(--ds-line);
    border-radius: 16px;
    padding: 13px 14px;
}

.input--textarea {
    min-height: 150px;
    resize: vertical;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    border: 0;
    border-radius: 999px;
    padding: 13px 22px;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ds-wine), var(--ds-red));
    cursor: pointer;
}

.poll-results {
    display: grid;
    gap: 10px;
    margin-top: 18px;
}

.poll-results__row {
    position: relative;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 999px;
    padding: 9px 12px;
    background: var(--ds-rose);
}

.review-card {
    max-width: 880px;
    margin: 24px auto 0;
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    padding: clamp(24px, 5vw, 46px);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--ds-shadow);
}

.review-card h1 {
    margin: 0 0 12px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.04;
}

.review-card__intro {
    color: var(--ds-muted);
    line-height: 1.7;
}

.review-card--success {
    text-align: center;
}

.review-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.review-form label,
.review-form__fieldset {
    display: grid;
    gap: 8px;
    color: var(--ds-wine);
    font-weight: 700;
}

.review-form__fieldset {
    border: 0;
    padding: 0;
}

.review-form__fieldset legend {
    margin-bottom: 8px;
    font-weight: 700;
}

.poll-results__row i {
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--poll-width);
    background: rgba(231, 76, 60, .18);
}

.poll-results__row span,
.poll-results__row strong {
    position: relative;
    z-index: 1;
}

.hp-field {
    position: absolute;
    left: -9999px;
}

.flash {
    max-width: 820px;
    margin: 0 auto 20px;
    border-radius: 18px;
    padding: 14px 18px;
    background: var(--ds-rose);
    color: var(--ds-wine);
}

.related {
    margin-top: 56px;
}

.empty-state {
    grid-column: 1 / -1;
    border: 1px dashed var(--ds-line);
    border-radius: var(--ds-radius);
    padding: 34px;
    background: rgba(255, 255, 255, .74);
}

.empty-state--page {
    max-width: 760px;
    margin: 60px auto;
    text-align: center;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 34px;
}

.pagination a {
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 10px 16px;
    background: #fff;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 420px) auto;
    align-items: start;
    gap: 20px;
    width: min(calc(100% - var(--ds-page-gutter) - var(--ds-page-gutter)), var(--ds-shell-width));
    max-width: none;
    margin: 0 auto;
    border-top: 1px solid var(--ds-line);
    padding: 28px 0 40px;
    color: var(--ds-muted);
}

.site-footer strong {
    display: block;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 26px;
}

.site-footer nav {
    display: flex;
    gap: 14px;
}

.newsletter-signup {
    display: grid;
    gap: 8px;
}

.newsletter-signup__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.newsletter-signup__label {
    color: var(--ds-wine);
    font-weight: 800;
}

.newsletter-signup__row {
    display: flex;
    gap: 8px;
}

.newsletter-signup__input {
    min-width: 0;
    flex: 1;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, .86);
}

.newsletter-signup__button,
.button-link {
    border: 0;
    border-radius: 999px;
    padding: 11px 16px;
    background: var(--ds-wine);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.newsletter-signup__button:disabled,
.button:disabled {
    cursor: not-allowed;
    opacity: .58;
}

.newsletter-signup__note {
    font-size: 13px;
}

.notice-page {
    max-width: 760px;
    margin: 64px auto;
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    padding: 34px;
    background: rgba(255, 255, 255, .82);
}

.calendar-detail {
    max-width: var(--ds-content-width);
    margin: 30px auto 0;
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    padding: clamp(24px, 5vw, 46px);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--ds-shadow);
}

.calendar-detail__header {
    text-align: center;
}

.horoscope-detail__heading-mark {
    display: inline-grid;
    justify-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.horoscope-detail__heading-mark .calendar-detail__icon {
    margin-bottom: 0;
}

.horoscope-detail__heading-mark .eyebrow {
    margin-bottom: 0;
}

.calendar-detail__icon {
    display: inline-grid;
    width: 64px;
    height: 64px;
    margin-bottom: 16px;
    place-items: center;
    border-radius: 50%;
    color: var(--ds-red);
    font-size: 25px;
    background: var(--ds-rose);
}

.calendar-detail h1 {
    margin: 8px 0 0;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: clamp(38px, 6vw, 66px);
    line-height: 1.04;
}

.calendar-detail__lead {
    margin: 14px auto 0;
    max-width: 580px;
    color: var(--ds-red);
    font-size: clamp(27px, 4vw, 38px);
}

.calendar-detail__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 28px 0;
}

.calendar-detail__meta div {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 8px 13px;
    background: var(--ds-cream);
}

.calendar-detail__meta dt,
.calendar-detail__meta dd {
    display: inline;
    margin: 0;
}

.calendar-detail__meta dt {
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.calendar-detail__meta dd {
    color: var(--ds-wine);
    font-weight: 800;
}

.calendar-detail__description {
    color: var(--ds-muted);
    font-size: 18px;
    line-height: 1.8;
}

.horoscope-detail__zodiac {
    border: 1px solid rgba(231, 76, 60, .2);
    background: rgba(255, 241, 240, .86);
}

.horoscope-detail__zodiac svg {
    width: 42px;
    height: 42px;
    overflow: visible;
}

.horoscope-detail__sections {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.horoscope-detail__section {
    border-top: 1px solid var(--ds-line);
    padding-top: 16px;
}

.horoscope-detail__section h2 {
    margin: 0 0 8px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 26px;
}

.horoscope-detail__section p {
    margin: 0;
    color: var(--ds-muted);
    font-size: 17px;
    line-height: 1.75;
    overflow-wrap: break-word;
}

.daily-affirmation {
    margin: 28px 0 0;
    border-top: 1px solid var(--ds-line);
    padding: 20px 10px;
    text-align: center;
}

.daily-affirmation__label {
    display: block;
    margin: 0;
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.daily-affirmation__text {
    max-width: 620px;
    margin: 8px auto 0;
    color: var(--ds-wine);
    font-family: var(--ds-script);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.15;
}

.daily-affirmation__more {
    margin: 12px 0 0;
}

.daily-affirmation__more a {
    display: inline-flex;
    border-bottom: 1px solid rgba(231, 76, 60, .4);
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.daily-affirmation__more a:hover {
    color: var(--ds-wine);
    border-color: rgba(127, 31, 38, .45);
}

.daily-affirmation + .horoscope-detail__sections {
    margin-top: 22px;
}

.daily-affirmation + .horoscope-detail__sections .horoscope-detail__section:first-child {
    border-top: 0;
    padding-top: 0;
}

.horoscope-detail__magic {
    position: relative;
    margin-top: 28px;
    border: 1px solid rgba(231, 76, 60, .22);
    border-radius: 22px;
    padding: 22px;
    text-align: center;
    background:
        linear-gradient(145deg, rgba(255, 241, 240, .82), rgba(255, 255, 255, .96));
}

.horoscope-detail__magic::before,
.horoscope-detail__magic::after {
    position: absolute;
    color: rgba(231, 76, 60, .42);
    font-family: var(--ds-serif);
    font-size: 24px;
    line-height: 1;
    content: "✦";
}

.horoscope-detail__magic::before {
    top: 14px;
    left: 16px;
}

.horoscope-detail__magic::after {
    right: 16px;
    bottom: 14px;
}

.horoscope-detail__magic-title {
    margin: 0;
    color: var(--ds-red);
    font-family: var(--ds-script);
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
}

.horoscope-detail__magic-text {
    max-width: 560px;
    margin: 8px auto 0;
    color: var(--ds-muted);
    font-size: 15px;
    line-height: 1.65;
}

.horoscope-detail__chips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: 10px;
    margin: 18px 0 0;
}

.horoscope-detail__chips span {
    display: grid;
    align-content: center;
    gap: 4px;
    min-height: 70px;
    border: 1px solid var(--ds-line);
    border-radius: 16px;
    padding: 10px 8px;
    background: rgba(255, 255, 255, .78);
}

.horoscope-detail__chips small {
    color: var(--ds-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.horoscope-detail__chips strong {
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 18px;
    line-height: 1.1;
}

.horoscope-detail__ritual {
    max-width: 620px;
    margin: 20px auto 0;
    border-top: 1px solid rgba(231, 76, 60, .18);
    padding-top: 18px;
}

.horoscope-detail__ritual h2 {
    margin: 0 0 8px;
    color: var(--ds-red);
    font-family: var(--ds-serif);
    font-size: 25px;
}

.horoscope-detail__ritual p {
    margin: 0;
    color: var(--ds-muted);
    font-size: 16px;
    line-height: 1.75;
}

.horoscope-picker__icon {
    color: var(--ds-red);
    font-family: var(--ds-serif);
    font-size: 32px;
}

.horoscope-picker__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.horoscope-picker__item {
    display: grid;
    justify-items: center;
    gap: 10px;
    border: 1px solid var(--ds-line);
    border-radius: 18px;
    padding: 18px 10px;
    color: var(--ds-wine);
    background: rgba(255, 255, 255, .72);
    transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.horoscope-picker__item:hover {
    color: var(--ds-red);
    border-color: rgba(231, 76, 60, .32);
    transform: translateY(-2px);
}

.horoscope-picker__item-icon {
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(231, 76, 60, .22);
    border-radius: 50%;
    color: var(--ds-red);
    background: var(--ds-rose);
}

.horoscope-picker__item-icon svg {
    width: 44px;
    height: 44px;
    overflow: visible;
}

.horoscope-picker__item span:not(.horoscope-picker__item-icon) {
    font-family: var(--ds-serif);
    font-size: 22px;
    font-weight: 700;
}

.name-detail__initial {
    color: #fff;
    font-family: var(--ds-serif);
    font-size: 34px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ds-wine), var(--ds-red));
}

.name-index__letters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.name-index__letters a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--ds-line);
    border-radius: 50%;
    color: var(--ds-red);
    font-weight: 800;
    background: #fff;
}

.name-index__letters a:hover {
    color: var(--ds-wine);
    border-color: rgba(127, 31, 38, .28);
}

.name-index__groups {
    display: grid;
    gap: 24px;
    margin-top: 32px;
}

.name-index__group {
    border-top: 1px solid var(--ds-line);
    padding-top: 18px;
}

.name-index__group h2 {
    margin: 0 0 12px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 30px;
}

.name-index__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.name-index__links a {
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 7px 11px;
    color: var(--ds-wine);
    font-size: 14px;
    font-weight: 800;
    background: rgba(255, 255, 255, .75);
}

.name-index__links a:hover {
    color: var(--ds-red);
    border-color: rgba(231, 76, 60, .3);
}

.name-detail__sections {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.name-detail__section {
    border-top: 1px solid var(--ds-line);
    padding-top: 16px;
}

.name-detail__section h2 {
    margin: 0 0 8px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 26px;
}

.name-detail__section p {
    margin: 0;
    color: var(--ds-muted);
    font-size: 17px;
    line-height: 1.75;
}

.name-detail__section--magic {
    border: 1px solid rgba(231, 76, 60, .18);
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    background: rgba(255, 241, 240, .55);
}

.name-detail__section--magic h2 {
    color: var(--ds-red);
}

.name-detail__section--magic p {
    color: var(--ds-wine);
    font-family: var(--ds-script);
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
}

.name-detail__section--guardian,
.name-detail__section--lucky {
    border: 1px solid rgba(127, 31, 38, .16);
    border-radius: 22px;
    padding: 26px;
    text-align: center;
}

.name-detail__section--guardian {
    background:
        radial-gradient(circle at 50% -30%, rgba(231, 76, 60, .15), transparent 16rem),
        rgba(255, 241, 240, .5);
}

.name-detail__section--lucky {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 250, 244, .9));
    box-shadow: 0 16px 42px rgba(127, 31, 38, .08);
}

.name-detail__section--guardian h2,
.name-detail__section--lucky h2 {
    color: var(--ds-red);
    font-size: 28px;
    text-align: center;
}

.name-detail__section .name-detail__guardian-title {
    color: var(--ds-wine);
    font-family: var(--ds-script);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.12;
    text-align: center;
}

.name-detail__section .name-detail__guardian-animal {
    display: inline-grid;
    width: auto;
    min-width: min(100%, 260px);
    margin: 18px auto 0;
    border: 1px solid var(--ds-line);
    border-radius: 999px;
    padding: 12px 26px 14px;
    background: rgba(255, 255, 255, .76);
}

.name-detail__guardian-animal span,
.name-detail__lucky-tags span {
    display: block;
    color: var(--ds-red);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.name-detail__guardian-animal strong {
    display: block;
    margin-top: 5px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 24px;
    line-height: 1.2;
}

.name-detail__section .name-detail__numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 0;
}

.name-detail__numbers b {
    display: grid;
    width: 88px;
    height: 88px;
    place-items: center;
    border: 2px solid rgba(127, 31, 38, .16);
    border-radius: 50%;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 36px;
    line-height: 1;
    background: #fff;
    box-shadow: 0 14px 32px rgba(127, 31, 38, .12);
}

.name-detail__numbers b:nth-child(2),
.name-detail__numbers b:only-child {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(135deg, var(--ds-wine), var(--ds-red));
    transform: translateY(-4px);
}

.name-detail__section .name-detail__lucky-tags {
    max-width: 440px;
    margin: 24px auto 0;
    border-top: 1px solid rgba(127, 31, 38, .12);
    padding-top: 16px;
    color: var(--ds-muted);
    font-size: 15px;
    text-align: center;
}

.name-detail__lucky-tags strong {
    display: block;
    margin-top: 6px;
    color: var(--ds-wine);
    font-size: 17px;
}

.mediakit-page {
    display: grid;
    gap: 26px;
}

.mediakit-page__hero,
.mediakit-page__section {
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    padding: clamp(22px, 4vw, 38px);
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 12px 42px rgba(127, 31, 38, .08);
}

.mediakit-page__hero {
    text-align: center;
}

.mediakit-page__hero img {
    width: 64px;
    height: 64px;
    margin: 0 auto 14px;
    border-radius: 18px;
    object-fit: contain;
}

.mediakit-page__hero .eyebrow {
    margin-left: auto;
    margin-right: auto;
}

.mediakit-page__hero h1 {
    margin: 10px 0 8px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1;
}

.mediakit-page__hero a {
    color: var(--ds-red);
    font-weight: 800;
}

.mediakit-page__section h2 {
    margin: 0 0 16px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 31px;
}

.mediakit-page__tiles,
.mediakit-page__metrics,
.mediakit-page__demographics,
.mediakit-page__prices {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.mediakit-page__tiles div,
.mediakit-page__metric,
.mediakit-page__metrics div,
.mediakit-page__demographic,
.mediakit-page__prices article {
    border: 1px solid var(--ds-line);
    border-radius: 18px;
    padding: 16px;
    background: rgba(255, 250, 244, .72);
}

.mediakit-page__tiles span {
    color: var(--ds-wine);
    font-weight: 800;
    line-height: 1.45;
}

.mediakit-page__metrics span,
.mediakit-page__demographic span {
    display: block;
    color: var(--ds-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.mediakit-page__metrics strong {
    display: block;
    margin-top: 5px;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 28px;
}

.mediakit-page__demographic p {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin: 9px 0 0;
}

.mediakit-page__demographic em {
    color: var(--ds-muted);
    font-style: normal;
}

.mediakit-page__demographic strong {
    color: var(--ds-wine);
}

.mediakit-page__prices article {
    display: grid;
    gap: 10px;
}

.mediakit-page__prices strong {
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 22px;
}

.mediakit-page__prices ul {
    display: grid;
    gap: 5px;
    margin: 0;
    padding-left: 18px;
    color: var(--ds-muted);
    line-height: 1.55;
}

.mediakit-page__prices span {
    color: var(--ds-red);
    font-weight: 900;
}

.mediakit-page__source,
.mediakit-page__note,
.mediakit-page__contact-note {
    margin: 14px 0 0;
    color: var(--ds-muted);
    font-size: 14px;
    line-height: 1.65;
}

.mediakit-page__source p,
.mediakit-page__note p,
.mediakit-page__contact-note p {
    margin: 0;
}

.mediakit-page__contact {
    display: grid;
    gap: 10px;
}

.mediakit-page__contact span,
.mediakit-page__contact a {
    color: var(--ds-wine);
    font-size: 18px;
    font-weight: 800;
}

.mediakit-page__contact a:hover {
    color: var(--ds-red);
}

.mediakit-page__contact p {
    margin: 0;
    color: var(--ds-muted);
    line-height: 1.65;
}

.mediakit-page__contact-note {
    margin-top: 4px;
}

.public-modal[hidden] {
    display: none;
}

.public-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: grid;
    place-items: center;
    padding: 22px;
}

.public-modal-open body {
    overflow: hidden;
}

.public-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(34, 22, 25, .52);
    backdrop-filter: blur(8px);
}

.public-modal__dialog {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: min(100%, 620px);
    max-height: min(90vh, 760px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .46);
    border-radius: var(--ds-radius);
    background: var(--ds-paper);
    box-shadow: var(--ds-shadow);
}

.public-modal__header,
.public-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
}

.public-modal__header {
    border-bottom: 1px solid var(--ds-line);
}

.public-modal__footer {
    border-top: 1px solid var(--ds-line);
}

.public-modal__title {
    margin: 0;
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: 28px;
    line-height: 1.1;
}

.public-modal__close {
    display: grid;
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--ds-line);
    border-radius: 50%;
    background: #fff;
    color: var(--ds-wine);
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.public-modal__close:hover {
    color: var(--ds-red);
    border-color: rgba(231, 76, 60, .38);
}

.public-modal__body {
    overflow: auto;
    padding: 22px;
}

@media (max-width: 1180px) {
    .layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .layout > :first-child {
        width: 100%;
        max-width: var(--ds-content-width);
    }

    .sidebar {
        position: static;
        width: 100%;
        max-width: var(--ds-sidebar-width);
    }
}

@media (max-width: 900px) {
    .site-header,
    .article-card--hero {
        grid-template-columns: 1fr;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .site-search {
        justify-self: start;
    }

    .site-search__form {
        left: 0;
        right: auto;
        width: calc(100vw - var(--ds-page-gutter) - var(--ds-page-gutter));
    }

    .site-search__row {
        grid-template-columns: 1fr;
    }

    .article-grid,
    .article-grid--compact {
        grid-template-columns: 1fr;
    }

    .article-gallery--pair,
    .article-gallery--triptych,
    .article-gallery--grid {
        grid-template-columns: 1fr;
    }

    .article-gallery--triptych .article-gallery__item:first-child {
        grid-row: auto;
    }

    .article-gallery__item img {
        max-height: 520px;
    }

    .article-figure--portrait img,
    .article-figure--tall img,
    .article-figure--long img {
        max-height: 520px;
    }

    .sidebar {
        max-width: none;
    }

    .horoscope-detail__chips {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .horoscope-picker__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .name-detail__numbers b {
        width: 62px;
        height: 62px;
        font-size: 25px;
    }

    .mediakit-page__tiles,
    .mediakit-page__metrics,
    .mediakit-page__demographics,
    .mediakit-page__prices {
        grid-template-columns: 1fr;
    }

    .company-box--article {
        align-items: flex-start;
        flex-direction: column;
    }

    .company-box__summary {
        width: 100%;
    }

    .company-box--article .company-box__text {
        white-space: normal;
    }

    .interaction-card__form--grid {
        grid-template-columns: 1fr;
    }

    .contest-result__header {
        align-items: flex-start;
    }

    .contest-result__seal {
        width: 46px;
        height: 46px;
        font-size: 22px;
    }

    .contest-result__winners li {
        align-items: flex-start;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .newsletter-signup__row {
        flex-direction: column;
    }

    .public-modal {
        padding: 12px;
    }

    .public-modal__header,
    .public-modal__footer,
    .public-modal__body {
        padding: 16px;
    }
}

/* Female.cz editorial theme */
body {
    background: #fbfbf8;
    color: #111;
    letter-spacing: 0;
}

.site-header {
    grid-template-columns: minmax(0, 1fr) auto 48px;
    gap: 18px 28px;
    padding: 18px 0 0;
    border-bottom: 2px solid #111;
}

.brand {
    grid-column: 2;
    justify-self: center;
    gap: 14px;
}

.brand__mark {
    width: 38px;
    height: 38px;
    border: 1px solid #111;
    border-radius: 0;
    color: #fff;
    font-size: 24px;
    font-style: normal;
    background: #111;
    box-shadow: none;
}

.brand__text {
    color: #111;
    font-size: clamp(48px, 10vw, 118px);
    font-weight: 400;
    line-height: .82;
    text-transform: uppercase;
}

.site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: center;
    gap: 0;
    width: 100%;
    border-top: 1px solid #111;
    color: #111;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
}

.site-nav a {
    padding: 13px 16px 12px;
    border-left: 1px solid var(--ds-line);
}

.site-nav a:last-child {
    border-right: 1px solid var(--ds-line);
}

.site-search {
    grid-column: 3;
    justify-self: end;
}

.site-search summary,
.site-search__row input,
.site-search__row button,
.newsletter-signup__input,
.newsletter-signup__button,
.button-link {
    border-radius: 0;
}

.site-search summary {
    border-color: #111;
    color: #111;
    background: transparent;
}

.site-search[open] summary,
.site-search__row button,
.newsletter-signup__button,
.button-link {
    color: #fff;
    background: #111;
}

.site-search__form {
    border-color: #111;
    border-radius: 0;
    background: #fff;
}

main {
    padding-top: 30px;
}

.article-card,
.sidebar-box,
.calendar-detail,
.mediakit-page,
.notice-page,
.company-box,
.article-ad,
.daily-affirmation,
.contest-result,
.public-modal__dialog {
    border-color: #111;
    border-radius: 0;
    box-shadow: none;
    background: #fff;
}

.hero {
    margin: 0 0 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid #111;
}

.article-card--hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: stretch;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.article-card--hero .article-card__image {
    border: 1px solid #111;
}

.article-card--hero .article-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0 28px 34px;
    color: #111;
    background: transparent;
}

.article-card--hero h2 {
    font-size: clamp(38px, 6.5vw, 82px);
    line-height: .92;
}

.article-card--hero .eyebrow {
    color: #a20d24;
}

.article-card--hero p {
    color: #5d6067;
}

.article-card:not(.article-card--hero) {
    border-width: 0 0 1px;
}

.article-card:not(.article-card--hero) .article-card__image {
    border: 1px solid var(--ds-line);
}

.article-card__image {
    background: #f2f2ef;
}

.article-card__body {
    padding: 18px 0 20px;
}

.article-grid {
    gap: 28px 24px;
}

.article-card h2,
.article-detail h1,
.calendar-detail h1,
.mediakit-page h1,
.page-title h1,
.sidebar-box h2,
.related h2 {
    font-family: var(--ds-serif);
    font-weight: 400;
    letter-spacing: 0;
    color: #111;
}

.article-card h2 a,
.mini-link,
.site-nav a,
.eyebrow {
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.article-card h2 a:hover,
.mini-link:hover,
.site-nav a:hover,
.eyebrow:hover {
    color: #a20d24;
    text-decoration: underline;
}

.eyebrow {
    color: #a20d24;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
}

.layout {
    align-items: start;
}

.sidebar {
    gap: 18px;
}

.sidebar-box {
    padding: 18px;
}

.sidebar-box h2 {
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #111;
    font-size: 20px;
    text-transform: uppercase;
}

.mini-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--ds-line);
}

.article-detail {
    background: transparent;
}

.article-detail__header {
    border-bottom: 1px solid #111;
}

.article-detail__header h1 {
    font-size: clamp(42px, 7vw, 86px);
    line-height: .95;
}

.article-content {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.72;
}

.article-content h2,
.article-content blockquote {
    color: #111;
}

.article-content blockquote {
    border-left-color: #a20d24;
    background: #f2f2ef;
}

.site-footer {
    border-top: 2px solid #111;
    background: #111;
    color: #fff;
}

.site-footer__brand strong {
    font-family: var(--ds-serif);
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 400;
    text-transform: uppercase;
}

.newsletter-signup {
    border-color: rgba(255, 255, 255, .25);
}

.newsletter-signup__note,
.site-footer nav a {
    color: rgba(255, 255, 255, .72);
}

.newsletter-signup__button {
    border: 1px solid #fff;
}

.pagination a {
    border-radius: 0;
    border-color: #111;
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) 38px;
        gap: 10px;
    }

    .brand {
        grid-column: 1;
        justify-self: start;
        min-width: 0;
        gap: 10px;
    }

    .brand__mark {
        width: 34px;
        height: 34px;
        font-size: 21px;
    }

    .brand__text {
        font-size: clamp(40px, 14vw, 58px);
    }

    .site-search {
        grid-column: 2;
    }

    .site-search summary {
        width: 38px;
        height: 38px;
    }

    .site-nav {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 1px;
    }

    .site-nav a {
        flex: 0 0 auto;
    }

    .article-card--hero {
        display: block;
    }

    .article-card--hero .article-card__body {
        padding: 22px 0 0;
    }
}

/* WSJ-inspired newspaper redesign: clean masthead, serif hierarchy, dense editorial grid. */
:root {
    --ds-ink: #111111;
    --ds-muted: #565656;
    --ds-faint: #77736b;
    --ds-red: #a20d24;
    --ds-cream: #fbfaf5;
    --ds-paper: #ffffff;
    --ds-rose: #f3f1ea;
    --ds-line: #c9c4ba;
    --ds-line-dark: #111111;
    --ds-shadow: none;
    --ds-radius: 0;
    --ds-serif: Georgia, "Times New Roman", Times, serif;
    --ds-sans: Arial, Helvetica, sans-serif;
    --ds-script: Georgia, "Times New Roman", Times, serif;
    --ds-page-gutter: 24px;
}

html {
    background: var(--ds-cream);
}

body {
    margin: 0;
    color: var(--ds-ink);
    font-family: var(--ds-sans);
    font-size: 16px;
    background: var(--ds-cream);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: linear-gradient(rgba(17, 17, 17, .025) 1px, transparent 1px);
    background-size: 100% 34px;
}

::selection {
    color: #fff;
    background: var(--ds-ink);
}

a {
    color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--ds-red);
    outline-offset: 3px;
}

.site-header {
    display: block;
    width: min(calc(100% - var(--ds-page-gutter) - var(--ds-page-gutter)), var(--ds-shell-width));
    margin: 12px auto 0;
    padding: 0;
    border-top: 4px solid var(--ds-line-dark);
    border-bottom: 1px solid var(--ds-line-dark);
    background: var(--ds-cream);
}

.site-header__utility {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    min-height: 34px;
    border-bottom: 1px solid var(--ds-line-dark);
    color: var(--ds-muted);
    font-size: 12px;
    line-height: 1;
}

.site-header__date {
    justify-self: start;
    font-weight: 700;
}

.site-header__tagline {
    justify-self: center;
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: 13px;
    font-style: italic;
    white-space: nowrap;
}

.site-header__links {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ds-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.site-header__links a:hover {
    color: var(--ds-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-header__masthead {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    align-items: center;
    min-height: 118px;
    border-bottom: 1px solid var(--ds-line-dark);
    padding: 14px 0 12px;
}

.brand {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 0;
}

.brand__mark {
    display: none;
}

.brand__text {
    display: block;
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: clamp(58px, 10.2vw, 124px);
    font-weight: 700;
    letter-spacing: -.065em;
    line-height: .82;
    text-align: center;
    text-transform: uppercase;
    text-wrap: balance;
}

.site-search {
    grid-column: 3;
    justify-self: end;
    position: relative;
}

.site-search summary {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    color: var(--ds-ink);
    background: transparent;
    cursor: pointer;
}

.site-search summary::-webkit-details-marker {
    display: none;
}

.site-search[open] summary {
    color: #fff;
    border-color: var(--ds-line-dark);
    background: var(--ds-ink);
}

.site-search__form {
    position: absolute;
    z-index: 50;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(calc(100vw - var(--ds-page-gutter) - var(--ds-page-gutter)), 520px);
    gap: 12px;
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    padding: 16px;
    background: var(--ds-paper);
    box-shadow: 0 18px 42px rgba(17, 17, 17, .12);
}

.site-search__label {
    color: var(--ds-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.site-search__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.site-search__row input,
.input,
.newsletter-signup__input {
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    color: var(--ds-ink);
    background: var(--ds-paper);
}

.site-search__row input {
    width: 100%;
    padding: 12px 13px;
}

.site-search__row button,
.button,
.button-link,
.newsletter-signup__button,
.editor-bar a {
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    color: #fff;
    font-weight: 700;
    letter-spacing: .02em;
    background: var(--ds-ink);
    box-shadow: none;
}

.site-search__row button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    cursor: pointer;
}

.site-search__row button:hover,
.button:hover,
.button-link:hover,
.newsletter-signup__button:hover,
.editor-bar a:hover {
    color: #fff;
    background: var(--ds-red);
}

.site-nav {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 0;
    overflow-x: auto;
    border: 0;
    color: var(--ds-ink);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    scrollbar-width: thin;
}

.site-nav a {
    position: relative;
    flex: 0 0 auto;
    border: 0;
    padding: 10px 12px 9px;
    white-space: nowrap;
}

.site-nav a + a::before {
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 12px;
    background: var(--ds-line);
    content: "";
    transform: translateY(-50%);
}

.site-nav a:hover {
    color: var(--ds-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

main {
    width: min(calc(100% - var(--ds-page-gutter) - var(--ds-page-gutter)), var(--ds-shell-width));
    margin: 0 auto;
    padding: 26px 0 56px;
}

.hero {
    margin: 0 0 28px;
    border-bottom: 3px double var(--ds-line-dark);
    padding-bottom: 26px;
}

.article-card {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.article-card--hero {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 28px;
    align-items: center;
    min-height: 0;
    border: 0;
    background: transparent;
}

.article-card--hero .article-card__image {
    grid-column: 2;
    border: 1px solid var(--ds-line-dark);
    aspect-ratio: 16 / 10;
    background: var(--ds-rose);
}

.article-card--hero .article-card__body {
    grid-column: 1;
    grid-row: 1;
    display: grid;
    align-content: center;
    min-width: 0;
    border-top: 4px solid var(--ds-line-dark);
    border-bottom: 1px solid var(--ds-line-dark);
    padding: 22px 0;
    color: var(--ds-ink);
    background: transparent;
}

.article-card--hero h2 {
    font-size: clamp(43px, 6.9vw, 83px);
    line-height: .9;
    letter-spacing: -.035em;
}

.article-card--hero p,
.article-card--hero time {
    color: var(--ds-muted);
}

.article-card--hero .eyebrow {
    color: var(--ds-red);
}

.article-card__image {
    display: block;
    overflow: hidden;
    border: 1px solid var(--ds-line);
    border-radius: 0;
    aspect-ratio: 4 / 3;
    background: var(--ds-rose);
}

.article-card__image img,
.article-card:not(.article-card--hero) .article-card__image img,
.contest-teaser img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter .18s ease, transform .28s ease;
}

.article-card:hover .article-card__image img {
    transform: none;
    filter: contrast(1.04) saturate(.92);
}

.article-card__body {
    padding: 13px 0 17px;
}

.article-card:not(.article-card--hero) {
    border-bottom: 1px solid var(--ds-line-dark);
}

.article-card h2,
.article-detail h1,
.calendar-detail h1,
.mediakit-page__hero h1,
.page-title h1,
.sidebar-box h2,
.interaction-card h2,
.event-block h2,
.review-card h1,
.public-modal__title {
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-weight: 700;
    letter-spacing: -.018em;
}

.article-card h2 {
    font-size: clamp(23px, 2.6vw, 33px);
    line-height: 1.02;
}

.article-card h2 a:hover {
    color: var(--ds-red);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-card p,
.empty-state p,
.notice-page p,
.review-card__intro {
    color: var(--ds-muted);
    line-height: 1.55;
}

.article-card p {
    margin: 9px 0 0;
    font-family: var(--ds-serif);
    font-size: 15px;
}

.article-card time,
.article-detail time,
.contest-teaser time,
.contest-teaser__status {
    display: inline-block;
    margin-top: 10px;
    color: var(--ds-faint);
    font-family: var(--ds-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin: 0 0 9px;
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--ds-red);
    font-family: var(--ds-sans);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.eyebrow:hover {
    color: var(--ds-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.layout {
    display: grid;
    grid-template-columns: minmax(0, var(--ds-content-width)) var(--ds-sidebar-width);
    gap: var(--ds-layout-gap);
    align-items: start;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}

.article-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.layout--article .article-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sidebar {
    position: sticky;
    top: 16px;
    display: grid;
    gap: 18px;
}

.sidebar-box,
.calendar-detail,
.mediakit-page__hero,
.mediakit-page__section,
.notice-page,
.review-card,
.public-modal__dialog,
.company-box--article,
.interaction-card,
.event-block,
.link-card,
.editor-bar,
.empty-state {
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    background: var(--ds-paper);
    box-shadow: none;
}

.sidebar-box {
    padding: 15px 0 0;
    background: transparent;
}

.sidebar-box h2 {
    margin: 0 0 12px;
    border-top: 3px solid var(--ds-line-dark);
    border-bottom: 1px solid var(--ds-line-dark);
    padding: 8px 0 7px;
    color: var(--ds-ink);
    font-family: var(--ds-sans);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    line-height: 1;
    text-transform: uppercase;
}

.sidebar-box > :not(h2) {
    margin-left: 0;
    margin-right: 0;
}

.sidebar-box--ad {
    border: 0;
    padding: 0;
}

.sidebar-box--ad h2 {
    padding-left: 0;
    padding-right: 0;
}

.mini-link,
.category-pill {
    display: block;
    border-top: 0;
    border-bottom: 1px solid var(--ds-line);
    padding: 11px 0;
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.mini-link:hover,
.category-pill:hover {
    color: var(--ds-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.horoscope-grid {
    gap: 6px;
}

.horoscope-link__icon,
.today-box__icon,
.calendar-detail__icon,
.horoscope-picker__item-icon,
.name-detail__initial,
.name-index__letters a,
.company-box__icon,
.contest-result__seal,
.name-detail__numbers b {
    border-radius: 0;
}

.horoscope-link__icon,
.today-box__icon,
.calendar-detail__icon,
.horoscope-picker__item-icon {
    border: 1px solid var(--ds-line);
    color: var(--ds-ink);
    background: var(--ds-paper);
}

.today-box__wish,
.daily-wisdom-box__quote,
.calendar-detail__lead,
.daily-affirmation__text,
.horoscope-detail__magic-title,
.name-detail__section .name-detail__guardian-title,
.name-detail__section--magic p,
.contest-result__congrats {
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-weight: 700;
    letter-spacing: -.015em;
}

.today-box__wish,
.daily-wisdom-box__quote {
    font-size: 22px;
    line-height: 1.12;
}

.daily-wisdom-box {
    border: 0;
    border-top: 3px solid var(--ds-line-dark);
    padding-top: 12px;
    background: transparent;
}

.daily-wisdom-box__category,
.daily-affirmation__label,
.mediakit-page__metrics span,
.mediakit-page__demographic span,
.name-detail__guardian-animal span,
.name-detail__lucky-tags span,
.contest-result__eyebrow,
.company-box__eyebrow,
.link-card span {
    color: var(--ds-red);
}

.ad-card,
.ad-card--content,
.ad-card--sidebar,
.ad-card--content.ad-card--empty,
.ad-card--sidebar.ad-card--empty {
    border: 1px solid var(--ds-line);
    border-radius: 0;
    background: var(--ds-paper);
}

.ad-card--empty {
    color: var(--ds-muted);
    background: repeating-linear-gradient(-45deg, var(--ds-paper), var(--ds-paper) 10px, #f4f1e8 10px, #f4f1e8 20px);
}

.contest-teaser {
    display: grid;
    gap: 9px;
    border-top: 0;
    border-bottom: 1px solid var(--ds-line);
    padding: 13px 0;
}

.contest-teaser:first-of-type {
    padding-top: 0;
}

.contest-teaser img {
    border: 1px solid var(--ds-line);
    border-radius: 0;
    aspect-ratio: 4 / 3;
    background: var(--ds-rose);
}

.contest-teaser strong {
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: 20px;
    line-height: 1.08;
}

.contest-teaser small {
    color: var(--ds-muted);
    font-family: var(--ds-serif);
    line-height: 1.45;
}

.page-title {
    margin: 0 0 26px;
    border-top: 4px solid var(--ds-line-dark);
    border-bottom: 1px solid var(--ds-line-dark);
    border-radius: 0;
    padding: 20px 0;
    background: transparent;
}

.page-title h1 {
    font-size: clamp(38px, 6vw, 72px);
    line-height: .92;
}

.article-detail,
.calendar-detail,
.mediakit-page,
.review-card {
    max-width: var(--ds-content-width);
    margin: 0 auto;
}

.article-detail {
    background: transparent;
}

.article-detail__header {
    margin-bottom: 24px;
    border-bottom: 3px double var(--ds-line-dark);
    padding-bottom: 20px;
    text-align: left;
}

.article-detail__meta {
    justify-content: flex-start;
}

.article-detail h1 {
    margin: 8px 0 0;
    font-size: clamp(44px, 7vw, 86px);
    line-height: .92;
    text-wrap: balance;
}

.article-detail time {
    margin-top: 14px;
}

.article-hero-image,
.article-figure,
.article-gallery__item,
.embed-block {
    overflow: hidden;
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    background: var(--ds-rose);
}

.article-hero-image,
.article-figure {
    margin: 0 0 24px;
}

.article-hero-image img,
.article-figure img,
.article-gallery__item img {
    display: block;
    width: 100%;
}

.article-figure figcaption,
.article-gallery__item figcaption {
    border-top: 1px solid var(--ds-line);
    color: var(--ds-muted);
    font-size: 12px;
    line-height: 1.35;
    background: var(--ds-paper);
}

.article-content {
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: 20px;
    line-height: 1.68;
}

.article-content__text {
    max-width: 68ch;
}

.article-content__text p:first-child::first-letter {
    float: left;
    margin: .07em .08em 0 0;
    color: var(--ds-ink);
    font-size: 4.1em;
    font-weight: 700;
    line-height: .78;
}

.article-content__text a {
    color: var(--ds-ink);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-content__text a:hover {
    color: var(--ds-red);
}

.article-quote,
.conversation-block,
.interaction-card,
.event-block,
.link-card,
.code-block {
    margin: 28px 0;
    border-radius: 0;
    padding: 24px;
}

.article-quote {
    border: 0;
    border-top: 3px solid var(--ds-line-dark);
    border-bottom: 1px solid var(--ds-line-dark);
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: 25px;
    line-height: 1.25;
    background: transparent;
}

.article-quote cite {
    color: var(--ds-muted);
    font-family: var(--ds-sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.code-block {
    border: 1px solid #111;
    color: #f7f2e8;
    background: #171717;
}

.choice-row,
.input,
.poll-results__row,
.name-directory-box__main,
.company-box__link,
.name-index__links a,
.horoscope-picker__item,
.horoscope-detail__chips span,
.name-detail__section--magic,
.name-detail__section--guardian,
.name-detail__section--lucky,
.calendar-detail__meta div,
.mediakit-page__tiles div,
.mediakit-page__metrics div,
.mediakit-page__demographic,
.mediakit-page__prices article,
.contest-result__winners li,
.contest-result__date {
    border-radius: 0;
    border-color: var(--ds-line);
    background: var(--ds-paper);
    box-shadow: none;
}

.poll-results__row i {
    background: rgba(162, 13, 36, .12);
}

.company-box--article {
    margin-top: 28px;
    padding: 16px 0;
    border-width: 1px 0;
    background: transparent;
}

.company-box__name {
    color: var(--ds-ink);
}

.company-box__link {
    color: var(--ds-ink);
}

.company-box__link:hover {
    color: var(--ds-red);
    border-color: var(--ds-red);
}

.company-box__icon,
.name-detail__initial,
.name-detail__numbers b:nth-child(2),
.name-detail__numbers b:only-child,
.contest-result__seal {
    color: #fff;
    background: var(--ds-ink);
}

.daily-affirmation {
    margin: 28px 0 0;
    border-top: 3px double var(--ds-line-dark);
    border-bottom: 1px solid var(--ds-line-dark);
    padding: 18px 0;
    background: transparent;
}

.daily-affirmation__text {
    font-size: clamp(26px, 3.5vw, 36px);
}

.calendar-detail,
.mediakit-page__hero,
.mediakit-page__section,
.review-card,
.notice-page {
    padding: clamp(22px, 4.4vw, 42px);
}

.calendar-detail__header {
    text-align: left;
}

.calendar-detail__icon {
    width: 56px;
    height: 56px;
    margin-bottom: 12px;
}

.calendar-detail h1,
.mediakit-page__hero h1,
.review-card h1 {
    font-size: clamp(42px, 6.5vw, 74px);
    line-height: .92;
}

.calendar-detail__lead {
    max-width: none;
    margin: 12px 0 0;
    color: var(--ds-muted);
    font-size: clamp(22px, 3vw, 31px);
    line-height: 1.12;
}

.calendar-detail__meta {
    justify-content: flex-start;
}

.calendar-detail__description,
.horoscope-detail__section p,
.name-detail__section p {
    color: var(--ds-muted);
    font-family: var(--ds-serif);
    font-size: 18px;
    line-height: 1.65;
}

.horoscope-detail__section,
.name-detail__section {
    border-top: 1px solid var(--ds-line-dark);
}

.horoscope-detail__section h2,
.name-detail__section h2,
.mediakit-page__section h2 {
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-weight: 700;
}

.horoscope-detail__magic,
.contest-result {
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    background: var(--ds-paper);
    box-shadow: none;
}

.horoscope-detail__magic::before,
.horoscope-detail__magic::after,
.contest-result:not(.contest-result--pending)::before {
    display: none;
}

.mediakit-page {
    gap: 20px;
}

.mediakit-page__hero,
.mediakit-page__section {
    background: var(--ds-paper);
}

.mediakit-page__tiles,
.mediakit-page__metrics,
.mediakit-page__demographics,
.mediakit-page__prices {
    gap: 10px;
}

.mediakit-page__metrics strong {
    color: var(--ds-ink);
}

.related {
    margin-top: 46px;
    border-top: 3px double var(--ds-line-dark);
    padding-top: 18px;
}

.related > .eyebrow {
    margin-bottom: 18px;
}

.pagination {
    margin-top: 32px;
}

.pagination a {
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    padding: 10px 14px;
    color: var(--ds-ink);
    font-weight: 700;
    background: var(--ds-paper);
}

.pagination a:hover {
    color: #fff;
    background: var(--ds-ink);
}

.flash {
    max-width: var(--ds-content-width);
    border: 1px solid var(--ds-line-dark);
    border-radius: 0;
    background: var(--ds-paper);
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(280px, 440px) auto;
    align-items: start;
    gap: 24px;
    width: min(calc(100% - var(--ds-page-gutter) - var(--ds-page-gutter)), var(--ds-shell-width));
    margin: 0 auto 24px;
    border-top: 4px solid var(--ds-line-dark);
    border-bottom: 1px solid var(--ds-line-dark);
    padding: 24px 0;
    color: var(--ds-ink);
    background: var(--ds-cream);
}

.site-footer__brand strong,
.site-footer strong {
    display: block;
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: clamp(34px, 5vw, 70px);
    font-weight: 700;
    letter-spacing: -.055em;
    line-height: .82;
    text-transform: uppercase;
}

.site-footer__brand span,
.newsletter-signup__note {
    color: var(--ds-muted);
    font-family: var(--ds-serif);
    line-height: 1.45;
}

.newsletter-signup__label {
    color: var(--ds-ink);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.newsletter-signup__input {
    padding: 11px 12px;
}

.newsletter-signup__button:disabled,
.button:disabled {
    opacity: .45;
}

.site-footer nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.site-footer nav a:hover {
    color: var(--ds-red);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.public-modal__backdrop {
    background: rgba(17, 17, 17, .55);
    backdrop-filter: blur(4px);
}

.public-modal__header,
.public-modal__footer {
    border-color: var(--ds-line-dark);
}

.public-modal__close {
    border-radius: 0;
    border-color: var(--ds-line-dark);
}

@media (max-width: 1180px) {
    .layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .layout > :first-child {
        width: 100%;
        max-width: var(--ds-content-width);
    }

    .sidebar {
        position: static;
        width: 100%;
        max-width: var(--ds-content-width);
    }

    .sidebar-box {
        border-top: 0;
    }
}

@media (max-width: 900px) {
    :root {
        --ds-page-gutter: 16px;
    }

    .site-header {
        margin-top: 8px;
    }

    .site-header__utility {
        grid-template-columns: 1fr auto;
        gap: 8px;
        min-height: 32px;
        padding: 0 0 6px;
    }

    .site-header__tagline {
        display: none;
    }

    .site-header__links {
        gap: 10px;
    }

    .site-header__masthead {
        grid-template-columns: minmax(0, 1fr) 38px;
        min-height: 72px;
        padding: 12px 0 10px;
    }

    .brand {
        grid-column: 1;
        justify-self: start;
        min-width: 0;
    }

    .brand__text {
        font-size: clamp(40px, 14vw, 60px);
        letter-spacing: -.055em;
        text-align: left;
    }

    .site-search {
        grid-column: 2;
        justify-self: end;
    }

    .site-search summary {
        width: 36px;
        height: 36px;
    }

    .site-search__form {
        right: 0;
        width: calc(100vw - var(--ds-page-gutter) - var(--ds-page-gutter));
    }

    .site-search__row {
        grid-template-columns: 1fr;
    }

    .site-search__row button {
        justify-content: center;
        min-height: 42px;
    }

    .site-nav {
        justify-content: flex-start;
        padding-bottom: 1px;
    }

    main {
        padding-top: 18px;
    }

    .article-card--hero {
        display: block;
    }

    .article-card--hero .article-card__image,
    .article-card--hero .article-card__body {
        grid-column: auto;
        grid-row: auto;
    }

    .article-card--hero .article-card__body {
        margin-top: 16px;
        padding: 17px 0;
    }

    .article-card--hero h2 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .article-grid,
    .article-grid--compact,
    .layout--article .article-grid--compact,
    .mediakit-page__tiles,
    .mediakit-page__metrics,
    .mediakit-page__demographics,
    .mediakit-page__prices {
        grid-template-columns: 1fr;
    }

    .article-detail__header {
        text-align: left;
    }

    .article-detail h1,
    .calendar-detail h1,
    .mediakit-page__hero h1,
    .review-card h1 {
        font-size: clamp(38px, 11vw, 60px);
    }

    .article-content {
        font-size: 18px;
        line-height: 1.65;
    }

    .article-content__text p:first-child::first-letter {
        font-size: 3.2em;
    }

    .article-gallery--pair,
    .article-gallery--triptych,
    .article-gallery--grid,
    .horoscope-picker__grid,
    .horoscope-detail__chips {
        grid-template-columns: 1fr;
    }

    .interaction-card__form--grid {
        grid-template-columns: 1fr;
    }

    .company-box--article,
    .contest-result__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-footer {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .site-footer nav {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .newsletter-signup__row {
        flex-direction: column;
    }
}
