@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: #221619;
    --ds-muted: #756267;
    --ds-wine: #7f1f26;
    --ds-red: #e74c3c;
    --ds-rose: #fff1f0;
    --ds-cream: #fffaf4;
    --ds-paper: #ffffff;
    --ds-line: #eadbd8;
    --ds-shadow: 0 24px 70px rgba(127, 31, 38, .13);
    --ds-radius: 26px;
    --ds-serif: Georgia, "Times New Roman", serif;
    --ds-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
    --ds-script: "Dancing Script Local", 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--placement {
    border: 0;
    padding: 0;
    background: transparent;
}

.sidebar-box--placement 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--article .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;
    width: 24px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    padding: 0;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    background: var(--ds-wine);
}

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

.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: "“";
}

.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);
}

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

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

.feature-slot + .feature-slot {
    margin-top: 14px;
}

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

.feature-slot img {
    width: 100%;
    height: auto;
}

.feature-slot--content,
.feature-slot--sidebar {
    position: relative;
    width: 100%;
    border: 1px solid transparent;
    border-radius: 14px;
    background: transparent;
    transition: border-color .18s ease, box-shadow .18s ease, filter .18s ease, transform .18s ease;
}

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

.feature-slot--content img,
.feature-slot--content .feature-slot__script {
    width: 100%;
    height: 100%;
}

.feature-slot--content img {
    object-fit: cover;
}

.feature-slot--sidebar {
    max-width: var(--ds-sidebar-width);
}

.feature-slot--sidebar img {
    width: 100%;
    height: auto;
}

.feature-slot--content img,
.feature-slot--sidebar img,
.feature-slot--content .feature-slot__script,
.feature-slot--sidebar .feature-slot__script {
    border-radius: inherit;
}

.feature-slot--content:hover,
.feature-slot--content:focus-visible,
.feature-slot--sidebar:hover,
.feature-slot--sidebar:focus-visible {
    border-color: rgba(196, 145, 55, .82);
    box-shadow: 0 0 0 3px rgba(196, 145, 55, .16), 0 16px 34px rgba(127, 31, 38, .14);
    filter: saturate(1.04);
    outline: none;
    transform: translateY(-2px);
}

.feature-slot--empty {
    padding: 20px;
}

.feature-slot--content.feature-slot--empty,
.feature-slot--sidebar.feature-slot--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);
}

.feature-slot--content.feature-slot--empty {
    min-height: 200px;
}

.feature-slot--sidebar.feature-slot--empty {
    min-height: 300px;
}

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

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

.feature-slot__fallback,
.feature-slot__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 {
    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;
    }
}

/* LuxuryTips public skin */
:root {
    --ds-ink: #f3efe4;
    --ds-muted: #b8aa94;
    --ds-wine: #d8b56d;
    --ds-red: #e8b4ba;
    --ds-rose: rgba(232, 180, 186, .13);
    --ds-cream: #101514;
    --ds-paper: #151d1b;
    --ds-line: rgba(243, 239, 228, .18);
    --ds-shadow: 0 28px 70px rgba(0, 0, 0, .34);
    --ds-radius: 8px;
    --ds-page-gutter: 24px;
}

body {
    background:
        linear-gradient(180deg, #101514 0, #121816 42rem, #0e1211 100%);
    color: var(--ds-ink);
}

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

.brand__mark {
    border: 1px solid var(--ds-line);
    color: var(--ds-wine);
    font-family: var(--ds-sans);
    font-size: 16px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .08em;
    background: rgba(243, 239, 228, .04);
    box-shadow: none;
}

.brand__text {
    color: var(--ds-ink);
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.brand__text span {
    color: var(--ds-wine);
    letter-spacing: .18em;
}

.site-nav,
.article-card p,
.article-content,
.empty-state p,
.company-box__text,
.contest-teaser small,
.contest-teaser time,
.contest-teaser__status,
.site-footer,
.mediakit-page__source,
.mediakit-page__note,
.mediakit-page__contact-note {
    color: var(--ds-muted);
}

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

.site-search summary,
.site-search__form,
.site-search__row input,
.article-card,
.sidebar-box,
.company-box--article,
.article-detail,
.interaction-card,
.contest-result,
.review-card,
.notice-page,
.mediakit-page__hero,
.mediakit-page__section,
.public-modal__panel {
    border-color: var(--ds-line);
    background: rgba(21, 29, 27, .88);
}

.site-search__row input,
.newsletter-signup__input,
.review-form input,
.review-form textarea,
.input {
    color: var(--ds-ink);
    border-color: var(--ds-line);
    background: rgba(243, 239, 228, .06);
}

.site-search__row input::placeholder,
.newsletter-signup__input::placeholder,
.input::placeholder {
    color: rgba(243, 239, 228, .54);
}

.site-search[open] summary,
.site-search__row button,
.newsletter-signup__button,
.review-form button,
.interaction-card button,
.pagination a:hover {
    color: #101514;
    background: var(--ds-wine);
}

.eyebrow,
.company-box__eyebrow,
.contest-result__eyebrow,
.newsletter-signup__label,
.site-search__label,
.mediakit-page__metrics span,
.mediakit-page__demographic span {
    color: var(--ds-red);
}

.article-card__image,
.contest-teaser img,
.article-hero-image,
.article-figure,
.mediakit-page__tiles div,
.mediakit-page__metrics div,
.mediakit-page__demographic,
.mediakit-page__prices article {
    background: rgba(243, 239, 228, .05);
}

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

.article-card h2,
.article-card h2 a,
.article-detail h1,
.page-title h1,
.sidebar-box h2,
.company-box__name,
.contest-teaser strong,
.contest-result h3,
.mediakit-page__hero h1,
.mediakit-page__section h2,
.mediakit-page__tiles span,
.mediakit-page__metrics strong,
.mediakit-page__demographic strong,
.mediakit-page__prices strong,
.site-footer strong {
    color: var(--ds-ink);
}

.portal-head {
    text-align: center;
    padding: clamp(38px, 7vw, 72px) 20px 28px;
}

.portal-head h1 {
    margin: 0;
    font-family: var(--ds-serif);
    font-size: clamp(54px, 10vw, 124px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: 0;
}

.portal-head p {
    max-width: 560px;
    margin: 18px auto 0;
    color: var(--ds-muted);
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.65;
}

.portals {
    position: relative;
    min-height: 1060px;
    margin: 0 0 46px;
}

.portal {
    position: absolute;
    z-index: 1;
    width: clamp(190px, 22vw, 270px);
    text-align: center;
}

.portal figure {
    display: grid;
    aspect-ratio: 1;
    margin: 0;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    outline: 1px solid var(--ds-line);
    outline-offset: 14px;
    background: rgba(243, 239, 228, .06);
}

.portal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.9) contrast(1.02);
    transition: transform .45s ease, filter .45s ease;
}

.portal:hover img {
    transform: scale(1.05);
    filter: saturate(1.04) contrast(1.04);
}

.portal h2 {
    margin: 24px 0 8px;
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: clamp(23px, 2.6vw, 34px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 0;
}

.portal span {
    color: var(--ds-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pr1 {
    left: 3%;
    top: 54px;
}

.pr2 {
    left: 36%;
    top: 0;
}

.pr3 {
    right: 3%;
    top: 88px;
}

.pr4 {
    left: 16%;
    top: 420px;
}

.pr5 {
    right: 24%;
    top: 405px;
}

.pr6 {
    left: 42%;
    top: 745px;
}

.pr7 {
    right: 0;
    top: 718px;
}

.layout {
    margin-top: 28px;
}

.article-detail {
    border: 1px solid var(--ds-line);
    border-radius: var(--ds-radius);
    padding: clamp(24px, 4vw, 44px);
}

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

.site-footer {
    border-top-color: var(--ds-line);
}

@media (max-width: 900px) {
    .portals {
        display: grid;
        min-height: auto;
        gap: 38px;
        margin-bottom: 34px;
    }

    .portal {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: min(78vw, 290px);
        margin: 0 auto;
    }
}

/* Real imported headlines are longer than the design mockup, so keep portals separated while preserving the scattered editorial map. */
.portals {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    align-items: start;
    gap: 34px 28px;
    width: min(100%, var(--ds-shell-width));
    min-height: auto;
    margin: 0 auto 72px;
}

.portal,
.pr1,
.pr2,
.pr3,
.pr4,
.pr5,
.pr6,
.pr7,
.pr8 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: min(100%, 282px);
    margin: 0 auto;
}

.portal:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1;
    width: min(100%, 294px);
    margin-top: 42px;
}

.portal:nth-child(2) {
    grid-column: 5 / span 3;
    grid-row: 1;
    width: min(100%, 252px);
    margin-top: 0;
}

.portal:nth-child(3) {
    grid-column: 10 / span 3;
    grid-row: 1;
    width: min(100%, 286px);
    margin-top: 64px;
}

.portal:nth-child(4) {
    grid-column: 3 / span 3;
    grid-row: 2;
    width: min(100%, 276px);
    margin-top: 12px;
}

.portal:nth-child(5) {
    grid-column: 8 / span 3;
    grid-row: 2;
    width: min(100%, 250px);
    margin-top: 78px;
}

.portal:nth-child(6) {
    grid-column: 1 / span 3;
    grid-row: 3;
    width: min(100%, 246px);
    margin-top: 16px;
}

.portal:nth-child(7) {
    grid-column: 5 / span 3;
    grid-row: 3;
    width: min(100%, 292px);
    margin-top: -18px;
}

.portal:nth-child(8) {
    grid-column: 10 / span 3;
    grid-row: 3;
    width: min(100%, 262px);
    margin-top: 54px;
}

.portal h2 {
    display: -webkit-box;
    min-height: 3.15em;
    overflow: hidden;
    font-size: clamp(22px, 2.1vw, 30px);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.portal span {
    display: block;
}

@media (max-width: 1100px) {
    .portals {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 58px 42px;
    }

    .portal:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
        width: min(100%, 286px);
    }

    .portal:nth-child(odd) {
        grid-column: span 3;
    }

    .portal:nth-child(even) {
        grid-column: span 3;
        margin-top: 38px;
    }
}

@media (max-width: 620px) {
    .portals {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .portal {
        width: min(82vw, 300px);
    }
}

/* Product/imported article photos should not be upscaled into soft oversized squares. */
.article-hero-image {
    display: grid;
    width: fit-content;
    max-width: 100%;
    overflow: visible;
    justify-items: center;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    background: transparent;
}

.article-hero-image img {
    width: auto;
    max-width: min(100%, 780px);
    max-height: min(76vh, 720px);
    border-radius: var(--ds-radius);
    object-fit: contain;
}

.article-figure {
    display: grid;
    width: fit-content;
    max-width: 100%;
    overflow: visible;
    justify-items: center;
    margin-right: auto;
    margin-left: auto;
    padding: 0;
    background: transparent;
}

.article-figure img,
.article-figure--portrait img,
.article-figure--tall img,
.article-figure--long img {
    width: auto;
    max-width: min(100%, 660px);
    max-height: 600px;
    border-radius: var(--ds-radius);
    object-fit: contain;
}

.article-gallery {
    gap: 16px;
}

.article-gallery__item {
    min-height: 0;
    aspect-ratio: 4 / 3;
    align-content: center;
    justify-items: center;
    padding: 14px;
    border-radius: var(--ds-radius);
}

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

.article-gallery__item img,
.article-gallery__item--wide img,
.article-gallery__item--landscape img,
.article-gallery__item--portrait img,
.article-gallery__item--tall img,
.article-gallery__item--long img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: auto;
    object-fit: contain;
}

.article-gallery__item figcaption {
    align-self: end;
}

.article-card__image {
    aspect-ratio: 16 / 10;
}

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

@media (max-width: 700px) {
    .article-hero-image img,
    .article-figure img,
    .article-figure--portrait img,
    .article-figure--tall img,
    .article-figure--long img {
        max-height: 520px;
    }

    .article-gallery__item {
        aspect-ratio: 1 / 1;
    }
}

/* Distinct LuxuryTips footer, intentionally different from the original public layer. */
.site-footer {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
    grid-template-areas:
        "brand newsletter"
        "nav newsletter";
    gap: 18px 56px;
    margin-top: 54px;
    border-top: 1px solid rgba(216, 181, 109, .26);
    border-bottom: 0;
    padding: 34px 0 46px;
    background: transparent;
}

.site-footer::before {
    content: "";
    position: absolute;
    top: 34px;
    bottom: 46px;
    left: min(58%, calc(100% - 468px));
    width: 1px;
    background: rgba(243, 239, 228, .1);
}

.site-footer__brand {
    grid-area: brand;
    display: grid;
    align-content: start;
    gap: 10px;
    max-width: 460px;
}

.site-footer strong {
    color: var(--ds-wine);
    font-family: var(--ds-serif);
    font-size: clamp(26px, 3vw, 40px);
    font-weight: 400;
    letter-spacing: 0;
    line-height: .95;
    text-transform: none;
}

.site-footer__brand span {
    color: var(--ds-muted);
    font-size: 15px;
    line-height: 1.6;
}

.site-footer nav {
    grid-area: nav;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    color: var(--ds-muted);
}

.site-footer nav a {
    border: 0;
    border-radius: 0;
    padding: 0;
    color: var(--ds-muted);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.site-footer nav a + a::before {
    content: "/";
    margin: 0 10px;
    color: rgba(243, 239, 228, .28);
}

.site-footer nav a:hover {
    color: var(--ds-wine);
    background: transparent;
}

.newsletter-signup {
    grid-area: newsletter;
    display: grid;
    grid-template-columns: 1fr auto;
    align-self: start;
    gap: 12px 10px;
    border-top: 0;
    border-radius: var(--ds-radius);
    padding: 18px 20px 20px;
    background: rgba(243, 239, 228, .045);
}

.newsletter-signup__label {
    grid-column: 1 / -1;
    color: var(--ds-wine);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.newsletter-signup__row {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
}

.newsletter-signup__input {
    border-color: rgba(243, 239, 228, .18);
    background: rgba(6, 10, 9, .5);
}

.newsletter-signup__button {
    color: #101514;
    background: var(--ds-wine);
}

.newsletter-signup__note {
    grid-column: 1 / -1;
    color: var(--ds-muted);
    font-size: 12px;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .site-footer {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "nav"
            "newsletter";
        gap: 18px;
    }

    .site-footer::before {
        display: none;
    }

    .newsletter-signup {
        grid-template-columns: 1fr;
        padding: 16px;
    }
}

/* Article detail uses admin widths: content column + right column. Homepage keeps the shell width. */
@media (min-width: 1181px) {
    .layout--article {
        grid-template-columns: minmax(0, var(--ds-content-width)) var(--ds-sidebar-width);
        gap: var(--ds-layout-gap);
        width: min(100%, var(--ds-shell-width));
        margin-right: auto;
        margin-left: auto;
    }

    .layout--article > :first-child {
        width: 100%;
        max-width: none;
    }

    .layout--article .article-detail {
        width: 100%;
        max-width: none;
    }
}

.article-lightbox-trigger {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    border: 0;
    padding: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

.article-lightbox-trigger:focus-visible {
    outline: 2px solid var(--ds-wine);
    outline-offset: 5px;
}

.article-lightbox-trigger img {
    display: block;
}

.image-lightbox {
    width: min(94vw, 1180px);
    max-height: 94vh;
    border: 0;
    padding: 0;
    color: var(--ds-ink);
    background: transparent;
}

.image-lightbox::backdrop {
    background: rgba(3, 6, 5, .86);
    backdrop-filter: blur(6px);
}

.image-lightbox__figure {
    display: grid;
    gap: 12px;
    margin: 0;
    place-items: center;
}

.image-lightbox__figure img {
    display: block;
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    box-shadow: 0 24px 90px rgba(0, 0, 0, .45);
}

.image-lightbox__figure figcaption {
    max-width: 760px;
    color: var(--ds-muted);
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.image-lightbox__close {
    position: fixed;
    z-index: 2;
    top: 18px;
    right: 22px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(243, 239, 228, .26);
    border-radius: 50%;
    color: var(--ds-ink);
    background: rgba(16, 21, 20, .72);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}

.image-lightbox__close:hover {
    color: #101514;
    background: var(--ds-wine);
}

/* LuxuryTips divergence layer: search, pagination and partner module use a sharper editorial language. */
.site-search summary {
    display: inline-flex;
    width: auto;
    height: 38px;
    align-items: center;
    gap: 8px;
    border: 0;
    border-bottom: 1px solid rgba(216, 181, 109, .56);
    border-radius: 0;
    padding: 0 2px;
    color: var(--ds-wine);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.site-search summary::after {
    content: "Najít";
}

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

.site-search__form {
    top: calc(100% + 18px);
    gap: 14px;
    border: 1px solid rgba(243, 239, 228, .2);
    border-top: 3px solid var(--ds-wine);
    border-radius: 0;
    padding: 20px;
    background: rgba(11, 16, 15, .98);
}

.site-search__label {
    color: var(--ds-wine);
    letter-spacing: 0;
}

.site-search__row input {
    border-radius: 0;
    padding: 14px 0;
    border-width: 0 0 1px;
    background: transparent;
}

.site-search__row button {
    min-width: 106px;
    justify-content: center;
    border: 1px solid rgba(216, 181, 109, .72);
    border-radius: 0;
    color: var(--ds-wine);
    background: transparent;
}

.site-search__row button:hover {
    color: #101514;
    background: var(--ds-wine);
}

.company-box--article {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
    align-items: stretch;
    gap: 24px;
    margin-top: 34px;
    border: 0;
    border-top: 1px solid rgba(216, 181, 109, .28);
    border-bottom: 1px solid rgba(243, 239, 228, .12);
    border-radius: 0;
    padding: 24px 0;
    background: transparent;
}

.company-box__summary {
    position: relative;
    gap: 8px;
    padding-left: 18px;
}

.company-box--article .company-box__summary::before {
    content: "";
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 0;
    width: 2px;
    background: var(--ds-wine);
}

.company-box--article .company-box__eyebrow {
    color: var(--ds-muted);
    letter-spacing: 0;
}

.company-box--article .company-box__name {
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 400;
    line-height: 1;
}

.company-box--article .company-box__text {
    max-width: 660px;
    color: var(--ds-muted);
    white-space: normal;
}

.company-box--article .company-box__links {
    display: grid;
    align-content: center;
    gap: 0;
    border-left: 1px solid rgba(243, 239, 228, .14);
    padding-left: 18px;
}

.company-box--article .company-box__link {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    border: 0;
    border-bottom: 1px solid rgba(243, 239, 228, .1);
    border-radius: 0;
    padding: 8px 0;
    color: var(--ds-muted);
    background: transparent;
    font-size: 13px;
}

.company-box--article .company-box__link:last-child {
    border-bottom: 0;
}

.company-box--article .company-box__link:hover {
    color: var(--ds-wine);
    border-color: rgba(216, 181, 109, .35);
}

.company-box--article .company-box__icon,
.company-box--article .company-box__link--website_url .company-box__icon,
.company-box--article .company-box__link--link_linkedin .company-box__icon,
.company-box--article .company-box__link--link_x .company-box__icon,
.company-box--article .company-box__link--link_fb .company-box__icon,
.company-box--article .company-box__link--link_ig .company-box__icon,
.company-box--article .company-box__link--link_youtube .company-box__icon {
    width: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 0;
    color: var(--ds-wine);
    background: transparent;
    font-size: 13px;
}

.sidebar-box--editorial .mini-link {
    display: grid;
    gap: 6px;
    border-top-color: rgba(216, 181, 109, .22);
    color: var(--ds-ink);
    font-family: var(--ds-serif);
    font-size: 18px;
    line-height: 1.18;
}

.today-box--international-days {
    border-left: 2px solid rgba(216, 181, 109, .55);
    border-radius: 0;
    padding-left: 18px;
}

.pagination a {
    border: 1px solid rgba(216, 181, 109, .52);
    border-radius: 0;
    padding: 11px 18px;
    color: var(--ds-wine);
    background: transparent;
    font-size: 13px;
    font-weight: 800;
}

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

@media (max-width: 900px) {
    .company-box--article {
        grid-template-columns: 1fr;
    }

    .company-box--article .company-box__links {
        border-left: 0;
        border-top: 1px solid rgba(243, 239, 228, .12);
        padding-top: 12px;
        padding-left: 0;
    }
}

/* Mobile header and inline search. */
.site-menu {
    display: none;
    min-width: 0;
}

.site-nav--desktop {
    display: flex;
}

.site-menu summary {
    display: none;
}

.site-search {
    width: min(100%, 220px);
    justify-self: end;
}

.site-search__form {
    position: static;
}

.site-search__label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

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

.site-search__row input {
    height: 36px;
    border: 1px solid rgba(216, 181, 109, .42);
    border-radius: 999px;
    padding: 0 12px;
    color: var(--ds-ink);
    background: rgba(243, 239, 228, .055);
}

.site-search__row button {
    display: grid;
    min-width: 36px;
    width: 36px;
    height: 36px;
    place-items: center;
    border: 1px solid rgba(216, 181, 109, .56);
    border-radius: 50%;
    padding: 0;
    color: var(--ds-wine);
    background: transparent;
}

.site-search__row button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.site-search__row button:hover {
    color: #101514;
    background: var(--ds-wine);
}

.article-card:not(.article-card--hero) .article-card__image {
    display: grid;
    place-items: center;
    aspect-ratio: 16 / 10;
    background: rgba(243, 239, 228, .055);
}

.article-card:not(.article-card--hero) .article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}

@media (max-width: 900px) {
    .site-header {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 14px 16px;
        padding-top: 18px;
    }

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

    .brand__mark {
        width: 44px;
        height: 44px;
    }

    .brand__text {
        font-size: 26px;
    }

    .site-menu {
        display: block;
        position: relative;
        z-index: 40;
        grid-column: 2;
        justify-self: end;
    }

    .site-nav--desktop {
        display: none;
    }

    .site-menu summary {
        display: inline-grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 1px solid rgba(216, 181, 109, .42);
        border-radius: 50%;
        color: var(--ds-wine);
        background: rgba(243, 239, 228, .035);
        cursor: pointer;
        list-style: none;
    }

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

    .site-menu summary span {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .site-menu .site-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: none;
        width: min(82vw, 320px);
        border: 1px solid rgba(243, 239, 228, .18);
        border-top: 3px solid var(--ds-wine);
        padding: 14px;
        background: rgba(11, 16, 15, .98);
        box-shadow: 0 20px 56px rgba(0, 0, 0, .42);
    }

    .site-menu[open] .site-nav {
        display: grid;
        justify-items: start;
        gap: 12px;
    }

    .site-menu .site-nav a {
        width: 100%;
        border-bottom: 1px solid rgba(243, 239, 228, .1);
        padding: 4px 0 10px;
    }

    .site-search {
        grid-column: 1 / -1;
        width: 100%;
        justify-self: stretch;
    }

    .site-search__row {
        grid-template-columns: minmax(0, 1fr) 42px;
    }

    .site-search__row input,
    .site-search__row button {
        height: 42px;
    }

    .site-search__row button {
        width: 42px;
        min-width: 42px;
    }
}

/* LuxuryTips public polish: product imagery should stay inspectable, contests get their own visual system. */
.article-card:not(.article-card--hero) .article-card__image {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    padding: clamp(12px, 2vw, 22px);
    background:
        linear-gradient(145deg, rgba(243, 239, 228, .08), rgba(216, 181, 109, .045)),
        rgba(10, 15, 14, .42);
}

.article-card:not(.article-card--hero) .article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
}

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

.contest-teaser {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(216, 181, 109, .18);
    border-radius: 18px;
    padding: 12px;
    background:
        linear-gradient(145deg, rgba(243, 239, 228, .08), rgba(216, 181, 109, .035)),
        rgba(21, 29, 27, .7);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .16);
    transition: border-color .18s ease, transform .18s ease, background-color .18s ease;
}

.contest-teaser + .contest-teaser {
    margin-top: 12px;
}

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

.contest-teaser:hover {
    border-color: rgba(216, 181, 109, .42);
    background-color: rgba(31, 40, 38, .86);
    transform: translateY(-2px);
}

.contest-teaser__media {
    display: grid;
    place-items: center;
    overflow: hidden;
    margin: 0;
    border-radius: 14px;
    aspect-ratio: 1 / 1;
    background: rgba(243, 239, 228, .065);
}

.contest-teaser img,
.contest-teaser__media img {
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: contain;
    object-position: center;
    background: transparent;
}

.contest-teaser__label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.contest-teaser__label .eyebrow {
    margin: 0;
}

.contest-teaser time,
.contest-teaser__status {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 5px 8px;
    color: #101514;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    background: var(--ds-wine);
}

.contest-teaser__status {
    background: rgba(243, 239, 228, .78);
}

.contest-teaser strong {
    font-size: 20px;
    line-height: 1.08;
}

.contest-teaser small {
    line-height: 1.45;
}

.contest-result {
    margin-top: 22px;
    border: 1px solid rgba(216, 181, 109, .22);
    border-radius: 20px;
    padding: clamp(20px, 4vw, 34px);
    color: var(--ds-muted);
    background:
        linear-gradient(145deg, rgba(243, 239, 228, .09), rgba(216, 181, 109, .045)),
        rgba(12, 18, 17, .78);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .22);
}

.contest-result:not(.contest-result--pending)::before {
    content: none;
}

.contest-result__header {
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid rgba(243, 239, 228, .12);
    margin-bottom: 18px;
    padding-bottom: 18px;
}

.contest-result__seal {
    order: 2;
    width: auto;
    min-width: 74px;
    height: 34px;
    border: 1px solid rgba(216, 181, 109, .42);
    border-radius: 999px;
    padding: 0 12px;
    color: #101514;
    font-family: var(--ds-sans);
    font-size: 0;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: var(--ds-wine);
    box-shadow: none;
}

.contest-result__seal::before {
    content: "Hotovo";
    font-size: 11px;
}

.contest-result h3 {
    max-width: 14ch;
    font-size: clamp(28px, 5vw, 42px);
}

.contest-result__congrats {
    color: #f3efe4;
    font-family: var(--ds-serif);
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.28;
}

.contest-result__winners {
    gap: 12px;
}

.contest-result__winners li {
    border-color: rgba(216, 181, 109, .18);
    border-radius: 14px;
    background: rgba(243, 239, 228, .06);
    box-shadow: none;
}

.contest-result__winners li::before {
    color: #101514;
    font-family: var(--ds-sans);
    background: var(--ds-wine);
}

.contest-result__winners span {
    color: #f3efe4;
}

.contest-result--pending {
    border-style: dashed;
    color: #f3efe4;
}

@media (max-width: 900px) {
    .contest-result__header {
        display: grid;
    }

    .contest-result__seal {
        order: 0;
        width: fit-content;
    }
}
