@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;
}
@font-face {
    font-family: "Skoro Marker";
    src: url("/assets/fonts/shantell-sans/shantell-sans.ttf") format("truetype");
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Skoro Marker";
    src: url("/assets/fonts/shantell-sans/shantell-sans.ttf") format("truetype");
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Skoro Hand";
    src: url("/assets/fonts/shantell-sans/shantell-sans.ttf") format("truetype");
    font-weight: 400 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Skoro Scrap";
    src: url("/assets/fonts/caveat/caveat.ttf") format("truetype");
    font-weight: 400 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: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    --ds-sans: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    --ds-script: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    --ds-content-width: 948px;
    --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: 0;
    background: #fff;
}

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

.portal-head {
    padding-bottom: clamp(44px, 5vw, 64px);
}

.same-brand-articles {
    margin-top: 28px;
    border: 1px solid rgba(216, 181, 109, .18);
    border-radius: 18px;
    padding: clamp(18px, 3vw, 26px);
    background:
        linear-gradient(145deg, rgba(243, 239, 228, .075), rgba(216, 181, 109, .035)),
        rgba(14, 20, 19, .68);
}

.same-brand-articles__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.same-brand-articles__header .eyebrow {
    margin: 0;
}

.same-brand-articles__header h2 {
    margin: 0;
    color: #f3efe4;
    font-family: var(--ds-serif);
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.05;
}

.same-brand-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.same-brand-card {
    overflow: hidden;
    border: 1px solid rgba(243, 239, 228, .12);
    border-radius: 14px;
    background: rgba(243, 239, 228, .055);
}

.same-brand-card__media {
    display: grid;
    place-items: center;
    aspect-ratio: 4 / 3;
    padding: 0;
    background: #fff;
}

.same-brand-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.same-brand-card__body {
    display: grid;
    gap: 8px;
    padding: 13px;
}

.same-brand-card__category {
    color: var(--ds-wine);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.same-brand-card h3 {
    margin: 0;
    font-family: var(--ds-serif);
    font-size: 18px;
    line-height: 1.12;
}

.same-brand-card h3 a {
    color: #f3efe4;
}

.same-brand-card h3 a:hover {
    color: var(--ds-wine);
}

.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: 18px;
    padding: clamp(18px, 3vw, 30px);
    color: rgba(243, 239, 228, .78);
    background:
        linear-gradient(145deg, rgba(216, 181, 109, .13), rgba(127, 31, 38, .08)),
        #111817;
    box-shadow: 0 22px 56px rgba(0, 0, 0, .28);
}

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

.contest-result__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 18px;
    border-bottom: 1px solid rgba(243, 239, 228, .12);
    margin-bottom: 20px;
    padding-bottom: 18px;
}

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

.contest-result__seal::before {
    content: "TOP";
    font-size: 18px;
}

.contest-result h3 {
    max-width: none;
    color: #f3efe4;
    font-size: clamp(25px, 4vw, 36px);
    letter-spacing: 0;
}

.contest-result__eyebrow {
    color: var(--ds-wine);
    letter-spacing: .12em;
}

.contest-result__congrats {
    max-width: 58ch;
    color: rgba(243, 239, 228, .82);
    font-family: var(--ds-sans);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.55;
}

.contest-result__winners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
}

.contest-result__winners li {
    display: grid;
    align-content: start;
    gap: 12px;
    min-height: 118px;
    border: 1px solid rgba(216, 181, 109, .2);
    border-radius: 14px;
    padding: 14px;
    background: rgba(243, 239, 228, .07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.contest-result__winners li::before {
    width: 34px;
    height: 34px;
    color: #101514;
    font-family: var(--ds-sans);
    font-size: 13px;
    background: var(--ds-wine);
}

.contest-result__winners span {
    color: #f3efe4;
    font-size: 16px;
    line-height: 1.25;
}

.contest-result--pending {
    border-style: dashed;
    color: #f3efe4;
    background: rgba(17, 24, 23, .86);
}

@media (max-width: 900px) {
    .same-brand-articles__grid {
        grid-template-columns: 1fr;
    }

    .same-brand-articles__header {
        display: grid;
    }

    .contest-result__header {
        display: grid;
    }

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

/* Skoro.cz public design layer */
* {
    box-sizing: border-box;
}

:root {
    --ink: #151515;
    --muted: #5b5045;
    --paper: #f4ede2;
    --paper-2: #fbf7ef;
    --line: #dfd5c7;
    --accent: #1a1a1a;
    --green: #596650;
    --tape: #e8d3aa;
}

html,
body {
    min-width: 1280px;
    margin: 0;
    padding: 0;
    background: #fbf8f2;
    color: var(--ink);
}

body {
    font-family: "Skoro Hand", "Trebuchet MS", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.18;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

.canvas {
    width: 1280px;
    min-height: 1672px;
    margin: 0 auto;
    padding: 0 40px 18px;
    background: #fbf8f2;
    position: relative;
    overflow: hidden;
}

.hand,
.logo h1,
.page-title h1,
.article-detail h1,
.calendar-detail h1,
.mediakit-page h1,
.notice-page h1 {
    font-family: "Skoro Marker", "Segoe Print", cursive;
    letter-spacing: 0;
}

.top-scrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 210px;
    height: 74px;
    background: #eee0cb;
    transform: rotate(-10deg);
    border-radius: 0 0 8px 0;
    padding: 29px 0 0 64px;
    font-size: 14px;
    color: #2b2620;
}

.social {
    position: absolute;
    right: 116px;
    top: 24px;
    width: 142px;
    height: 58px;
    background: #eee3d3;
    transform: rotate(-1deg);
    text-align: center;
    padding-top: 10px;
    font-weight: 700;
}

.social .icons {
    font-size: 18px;
    letter-spacing: 9px;
    margin-left: 6px;
    margin-top: 8px;
}

.logo {
    text-align: center;
    padding-top: 19px;
}

.logo h1 {
    margin: 0;
    font-size: 44px;
    line-height: 48px;
    letter-spacing: 3px;
}

.logo p {
    margin: 2px 0 22px;
    font-size: 12px;
    letter-spacing: .8px;
}

.nav {
    height: 42px;
    border-top: 1px solid #eee9e2;
    border-bottom: 1px solid #e7dfd4;
    display: flex;
    align-items: center;
    gap: 31px;
    padding-left: 24px;
    font-weight: 700;
    font-size: 10px;
}

.nav a {
    white-space: nowrap;
}

.nav a.is-active {
    background: #111;
    color: #fff;
    border-radius: 5px;
    padding: 8px 15px;
}

.nav-search {
    margin-left: auto;
    position: relative;
    z-index: 15;
}

.nav-search summary {
    list-style: none;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 7px 18px 7px 4px;
}

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

.nav-search form {
    position: absolute;
    top: 38px;
    right: 8px;
    width: 260px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 12px;
    background: #f8efe2;
    border: 1px solid var(--line);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
}

.nav-search input[type="search"] {
    min-width: 0;
    border: 0;
    background: #fff;
    height: 30px;
    padding: 6px 9px;
}

.nav-search button {
    border: 0;
    background: #111;
    color: #fff;
    padding: 0 10px;
    font-size: 10px;
    font-weight: 800;
    cursor: pointer;
}

.nav-search__trap,
.newsletter-form__trap {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.row {
    display: grid;
    gap: 14px;
}

.hero-row {
    grid-template-columns: minmax(0, 868px) 300px;
    gap: 32px;
    margin-top: 15px;
}

.paper {
    background: var(--paper);
    background-image:
        radial-gradient(circle at 18% 22%, rgba(255, 255, 255, .34) 0 1px, transparent 1px),
        radial-gradient(circle at 75% 68%, rgba(91, 80, 69, .08) 0 1px, transparent 1px),
        linear-gradient(135deg, rgba(255, 255, 255, .24), rgba(225, 211, 190, .18));
    background-size: 23px 23px, 31px 31px, 100% 100%;
    border: 1px solid #e8ddcf;
    box-shadow: 0 2px 7px rgba(50, 35, 20, .11);
    position: relative;
}

.hero {
    height: 326px;
    padding: 23px 0 0 30px;
    background: #f6efdf;
    overflow: hidden;
}

.hero h2 {
    font-size: 33px;
    line-height: 1.12;
    margin: 16px 0 22px;
    max-width: 385px;
    font-weight: 500;
}

.kicker {
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .3px;
}

.hero-copy {
    font-size: 14px;
    line-height: 1.55;
    margin: 0 0 20px;
}

.btn {
    display: inline-block;
    border: 0;
    background: #111;
    color: #fff;
    padding: 9px 16px;
    font-weight: 700;
    font-size: 10px;
    border-radius: 1px;
    cursor: pointer;
}

.btn:disabled {
    opacity: .45;
    cursor: default;
}

.hero-photo {
    position: absolute;
    right: 28px;
    top: 17px;
    width: 452px;
    height: 292px;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(4% 0, 100% 2%, 96% 100%, 0 96%);
}

.note {
    position: absolute;
    background: #d7a89e;
    color: #332b25;
    padding: 20px 13px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .17);
    transform: rotate(-3deg);
    font-size: 13px;
}

.hero .note {
    left: 474px;
    top: 167px;
    width: 125px;
    height: 130px;
    opacity: .88;
}

.tape {
    position: absolute;
    background: rgba(220, 194, 151, .72);
    height: 22px;
    transform: rotate(-2deg);
}

.hero .tape {
    right: 42px;
    top: -5px;
    width: 131px;
}

.side-stack {
    display: grid;
    gap: 14px;
}

.mood {
    height: 147px;
    padding: 18px;
}

.mood h3,
.tip h3 {
    margin: 0 0 21px;
    font-size: 12px;
}

.mood .question {
    font-size: 17px;
    margin-bottom: 15px;
}

.faces {
    font-size: 24px;
    letter-spacing: 4px;
}

.mood small {
    display: block;
    text-align: center;
    margin-top: 7px;
}

.tip {
    height: 164px;
    padding: 18px;
}

.tip h4 {
    font-size: 18px;
    margin: 0 0 24px;
    width: 130px;
}

.tip img {
    position: absolute;
    right: 17px;
    bottom: 14px;
    width: 125px;
    height: 125px;
    object-fit: cover;
    padding: 8px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .16);
    transform: rotate(4deg);
}

.tip .clip {
    position: absolute;
    right: 33px;
    top: 17px;
    font-size: 37px;
    color: #936d3c;
    transform: rotate(10deg);
}

.catbar {
    height: 79px;
    margin-top: 17px;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    align-items: center;
    text-align: center;
    padding: 8px 26px 10px;
    background: #eee2cf;
    transform: rotate(-.5deg);
}

.cat {
    font-size: 9px;
    font-weight: 800;
}

.cat .ico {
    width: 43px;
    height: 43px;
    background: #fbf9f6;
    border-radius: 50%;
    margin: 0 auto 7px;
    display: grid;
    place-items: center;
    font-size: 21px;
    border: 1px solid rgba(0, 0, 0, .04);
}

.main-grid {
    display: grid;
    grid-template-columns: 550px 300px 314px;
    gap: 18px;
    margin-top: 17px;
}

.relationships {
    height: 390px;
    padding: 15px 17px;
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 800;
    font-size: 12px;
}

.more {
    font-size: 10px;
    font-weight: 700;
}

.rel-img {
    width: 290px;
    height: 212px;
    object-fit: cover;
}

.rel-title {
    position: absolute;
    left: 96px;
    bottom: 36px;
    background: #eee6d9;
    transform: rotate(-4deg);
    padding: 12px 16px;
    font-size: 17px;
    line-height: 1.28;
    width: 210px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .12);
}

.rel-list {
    position: absolute;
    left: 330px;
    top: 45px;
    width: 150px;
}

.rel-mini {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 8px;
    margin-bottom: 14px;
    align-items: start;
    font-size: 10px;
    font-weight: 700;
}

.rel-mini img {
    width: 36px;
    height: 50px;
    object-fit: cover;
}

.therapist {
    height: 390px;
    padding: 15px 18px;
    overflow: hidden;
}

.therapist > img {
    width: 90px;
    height: 128px;
    object-fit: cover;
    padding: 7px;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .14);
    transform: rotate(-4deg);
}

.therapist .ask {
    position: absolute;
    left: 155px;
    top: 78px;
    width: 115px;
    height: 85px;
    background: #ead9bb;
    padding: 24px 10px 0;
    transform: rotate(4deg);
    font-size: 13px;
    color: #6b4d3c;
}

.therapist .answer {
    font-size: 16px;
    line-height: 1.25;
    margin: 18px 0 10px;
}

.therapist .byline {
    font-size: 10px;
    margin-bottom: 10px;
}

.community {
    height: 390px;
    padding: 15px 18px;
    background: #f4efe6;
    overflow: hidden;
}

.post {
    margin-left: 38px;
    width: 250px;
    min-height: 73px;
    padding: 13px 16px 10px 40px;
    margin-bottom: 16px;
    position: relative;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .13);
    transform: rotate(-2deg);
}

.post::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #63a2a5;
}

.post .name {
    font-weight: 800;
}

.post small {
    color: #6a625c;
}

.post p {
    margin: 6px 0 0;
    font-size: 10px;
    line-height: 1.35;
}

.post.one {
    background: #e3d2a7;
}

.post.two {
    background: #edd9cf;
    transform: rotate(1deg);
}

.post.three {
    background: #dbe5ce;
}

.community .btn {
    position: absolute;
    right: 25px;
    bottom: 16px;
}

.mid-grid {
    display: grid;
    grid-template-columns: 300px 564px 300px;
    gap: 18px;
    margin-top: 17px;
}

.challenge,
.recs,
.newsletter {
    height: 178px;
    padding: 20px;
}

.challenge {
    overflow: hidden;
}

.challenge p {
    margin: 28px 0 18px;
    font-size: 14px;
    line-height: 1.35;
    width: 160px;
}

.challenge::after {
    content: "";
    position: absolute;
    right: 18px;
    bottom: 8px;
    width: 60px;
    height: 130px;
    border-right: 2px solid #b3935d;
    transform: rotate(-10deg);
    opacity: .45;
}

.recs {
    padding: 20px 24px;
}

.rec-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 19px;
}

.rec img {
    width: 96px;
    height: 78px;
    object-fit: cover;
    display: block;
    margin-bottom: 7px;
}

.rec {
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
}

.newsletter {
    padding: 20px 24px;
}

.newsletter p {
    font-size: 11px;
    width: 240px;
}

.newsletter-form input[type="email"] {
    border: 0;
    background: #fff;
    height: 22px;
    width: 180px;
    padding: 4px 8px;
    margin: 8px 0;
    font-size: 10px;
}

.newsletter small {
    display: block;
    margin-top: 9px;
}

.lower-grid {
    display: grid;
    grid-template-columns: 440px 360px 364px;
    gap: 18px;
    margin-top: 17px;
}

.guide {
    height: 230px;
    background: #54624f;
    color: #fff;
    padding: 26px 23px;
    overflow: hidden;
}

.guide .label {
    position: absolute;
    top: -1px;
    left: 40px;
    color: #181818;
    background: #ebce69;
    padding: 5px 10px;
    font-size: 9px;
    font-weight: 800;
}

.guide h2 {
    font-size: 26px;
    line-height: 1.25;
    margin: 0 0 20px;
    font-weight: 500;
    width: 170px;
}

.guide p {
    width: 174px;
    font-size: 11px;
    line-height: 1.35;
}

.guide img {
    position: absolute;
    right: 20px;
    top: 38px;
    width: 160px;
    height: 132px;
    object-fit: cover;
    padding: 7px;
    background: #fff;
    transform: rotate(3deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
}

.price {
    position: absolute;
    left: 154px;
    bottom: 4px;
    background: #e6be63;
    color: #111;
    padding: 9px 17px;
    font-size: 16px;
    font-weight: 800;
    transform: rotate(-2deg);
}

.events,
.podcast {
    height: 230px;
    padding: 20px 18px;
}

.event {
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 10px;
    align-items: start;
    border-bottom: 1px solid var(--line);
    padding: 12px 0 10px;
}

.event .date {
    font-size: 16px;
}

.event p {
    margin: 0;
    font-size: 10px;
}

.event .join {
    border: 1px solid #333;
    padding: 5px 7px;
    font-size: 8px;
    font-weight: 800;
}

.events .more {
    position: absolute;
    right: 16px;
    bottom: 12px;
}

.podcast h2 {
    margin: 0 0 23px;
    font-size: 13px;
}

.podcast h3 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.25;
    width: 130px;
}

.podcast p {
    font-size: 10px;
    width: 135px;
}

.podcast img {
    position: absolute;
    right: 16px;
    top: 61px;
    width: 127px;
    height: 112px;
    object-fit: cover;
}

.article-row {
    height: 222px;
    margin-top: 17px;
    padding: 20px 18px;
}

.articles {
    display: grid;
    grid-template-columns: repeat(5, 1fr) 1.6fr;
    gap: 13px;
    margin-top: 18px;
}

.article img {
    width: 142px;
    height: 82px;
    object-fit: cover;
    display: block;
    margin-bottom: 9px;
}

.article {
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.quote {
    background: #efe8dd;
    min-height: 105px;
    margin: -3px 0 0;
    padding: 18px 25px;
    font-size: 17px;
    line-height: 1.25;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    transform: rotate(-1deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, .08);
}

.footer {
    height: 178px;
    margin-top: 17px;
    padding: 20px 25px 34px;
    background: #f6f0e7;
    display: grid;
    grid-template-columns: 110px 250px 150px 150px 150px 1fr;
    gap: 28px;
    font-size: 9px;
    border: 1px solid #eadfd0;
    position: relative;
}

.footer .foot-logo {
    font-size: 22px;
    line-height: 1.05;
    font-family: "Skoro Marker", "Segoe Print", cursive;
}

.footer h4 {
    margin: 0 0 5px;
    font-size: 9px;
}

.footer p,
.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
    line-height: 1.5;
}

.help {
    align-self: center;
    background: #ced0ac;
    padding: 18px 22px;
    border-radius: 50% 45% 48% 52%;
    font-size: 10px;
    min-height: 80px;
}

.legal {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    color: #777;
    font-size: 7px;
}

.page-title {
    margin-top: 17px;
    padding: 22px 24px;
    background: #f3e6d5;
    border: 1px solid #e8ddcf;
}

.page-title h1 {
    margin: 0;
    font-size: 34px;
    line-height: 1.05;
}

.eyebrow {
    margin: 0 0 9px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.listing-page {
    margin-top: 17px;
    padding: 18px;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

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

.article-card {
    background: #f8efe2;
    border: 1px solid #e5d8c9;
    min-height: 230px;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
}

.article-card__image {
    display: block;
    height: 118px;
    background: #eee2cf;
    overflow: hidden;
}

.article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card__body {
    padding: 13px;
}

.article-card h2 {
    margin: 0;
    font-size: 17px;
    line-height: 1.18;
}

.article-card p {
    margin: 9px 0 0;
    color: var(--muted);
    line-height: 1.45;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 30px;
    background: #f8efe2;
    border: 1px solid #e8ddcf;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 17px;
}

.pagination a {
    background: #111;
    color: #fff;
    padding: 9px 14px;
    font-size: 10px;
    font-weight: 800;
}

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

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

.article-detail,
.calendar-detail,
.mediakit-page,
.notice-page {
    background: #f6efdf;
    border: 1px solid #e8ddcf;
    padding: 28px;
    box-shadow: 0 2px 4px rgba(50, 35, 20, .10);
}

.article-detail__header {
    margin-bottom: 22px;
}

.article-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 14px;
}

.article-detail h1,
.calendar-detail h1,
.mediakit-page h1,
.notice-page h1 {
    margin: 0;
    font-size: 39px;
    line-height: 1.06;
    font-weight: 500;
}

.article-detail time {
    display: inline-block;
    margin-top: 12px;
    color: var(--muted);
}

.article-hero-image {
    margin: 22px 0 0;
}

.article-hero-image img,
.article-figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-lightbox-trigger {
    display: block;
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.article-content {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.72;
}

.article-content__text {
    margin-bottom: 18px;
}

.article-content__text p {
    margin: 0 0 16px;
}

.article-content h2,
.article-content h3 {
    margin: 28px 0 12px;
    line-height: 1.18;
}

.article-figure,
.article-gallery {
    margin: 22px 0;
}

.article-figure figcaption,
.article-gallery figcaption {
    margin-top: 7px;
    color: var(--muted);
    font-size: 11px;
}

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

.article-gallery__item {
    margin: 0;
}

.article-quote {
    margin: 22px 0;
    padding: 18px 22px;
    background: #efe8dd;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 20px;
}

.conversation-block,
.interaction-card,
.daily-affirmation,
.company-box--article,
.article-placement,
.same-brand-articles,
.related {
    margin-top: 22px;
    padding: 18px;
    background: #f8efe2;
    border: 1px solid #e8ddcf;
}

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

.company-box__eyebrow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.company-box__name {
    display: block;
    font-size: 17px;
}

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

.company-box__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
}

.sidebar {
    display: grid;
    gap: 14px;
}

.sidebar-box {
    background: #f6efdf;
    border: 1px solid #e8ddcf;
    padding: 16px;
}

.sidebar-box h2 {
    margin: 0 0 12px;
    font-size: 15px;
}

.mini-link,
.contest-teaser {
    display: block;
    padding: 10px 0;
    border-top: 1px solid var(--line);
    font-weight: 800;
}

.feature-slot,
.ad-card {
    display: grid;
    place-items: center;
    min-height: 190px;
    padding: 18px;
    text-align: center;
    background: #eee2cf;
}

.related .article-grid,
.same-brand-articles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.same-brand-card {
    background: #fbf8f2;
    border: 1px solid #e8ddcf;
}

.same-brand-card__media {
    display: block;
    height: 120px;
    overflow: hidden;
}

.same-brand-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.same-brand-card__body {
    padding: 12px;
}

.editor-bar,
.flash {
    margin-top: 17px;
    padding: 11px 14px;
    background: #111;
    color: #fff;
    font-weight: 800;
}

.flash--success {
    background: #54624f;
}

.flash--warning,
.flash--error {
    background: #7f3b2d;
}

.image-lightbox {
    width: min(920px, calc(100vw - 40px));
    border: 0;
    padding: 0;
    background: #111;
    color: #fff;
}

.image-lightbox::backdrop {
    background: rgba(0, 0, 0, .72);
}

.image-lightbox__close {
    position: absolute;
    right: 8px;
    top: 4px;
    z-index: 2;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.image-lightbox__figure {
    margin: 0;
}

.image-lightbox__figure img {
    width: 100%;
    max-height: 86vh;
    object-fit: contain;
}

.image-lightbox__figure figcaption {
    padding: 10px 14px;
}

/* Screenshot polish */
html,
body {
    overflow-x: hidden;
}

.hero h2 {
    max-width: 385px;
    font-size: 34px;
}

.faces {
    white-space: nowrap;
    font-size: 20px;
    letter-spacing: 2px;
}

.challenge h3,
.recs h3,
.newsletter h3,
.events h3 {
    margin: 0;
    font-size: 13px;
}

.events h3 {
    margin-bottom: 8px;
}

.event {
    padding: 9px 0 7px;
}

.podcast h3 {
    font-size: 15px;
    width: 126px;
}

/* Skoro.cz typography and icon pass */
.logo h1,
.foot-logo,
.hero h2,
.rel-title,
.answer,
.quote,
.help,
.article-detail h1 {
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-weight: 700;
    letter-spacing: 0;
}

.nav,
.kicker,
.card-head,
.btn,
.cat,
.mood h3,
.tip h3,
.challenge h3,
.recs h3,
.newsletter h3,
.events h3,
.podcast h3,
.latest h3,
.article-grid h2,
.page-title h1 {
    font-family: "Skoro Marker", "Trebuchet MS", Arial, sans-serif;
    letter-spacing: 0;
}

.logo h1 {
    font-size: 52px;
    line-height: .88;
}

.logo p {
    font-size: 13px;
    letter-spacing: .5px;
}

.top-scrap,
.note,
.ask,
.quote,
.help {
    font-family: "Skoro Hand", "Segoe Print", cursive;
}

.social .icons {
    display: flex;
    justify-content: center;
    gap: 13px;
    margin: 8px 0 0;
    font-size: 16px;
    letter-spacing: 0;
}

.nav-search summary {
    font-size: 15px;
    padding-top: 9px;
}

.faces {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    letter-spacing: 0;
}

.faces span {
    font-size: 14px;
}

.cat .ico {
    font-size: 17px;
}

.tip .clip {
    font-size: 35px;
    line-height: 1;
}

.foot-logo i,
.top-scrap i,
.kicker i,
.card-head i {
    font-size: .72em;
}

/* Article detail readability pass */
.layout--article {
    grid-template-columns: minmax(0, var(--ds-content-width)) var(--ds-sidebar-width);
    gap: var(--ds-layout-gap);
}

.layout--article .article-detail {
    padding: 42px 52px;
    background-color: #f5ecdd;
}

.layout--article .article-detail__header {
    max-width: 780px;
    margin: 0 auto 28px;
    text-align: left;
}

.layout--article .article-detail__meta {
    justify-content: flex-start;
    margin-bottom: 12px;
}

.layout--article .article-detail h1 {
    display: block;
    margin: 0 0 14px;
    color: #111;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 50px;
    font-weight: 800;
    line-height: 1.06;
}

.layout--article .article-detail time {
    margin-top: 0;
    color: #685e51;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
}

.layout--article .article-hero-image {
    max-width: 820px;
    margin: 0 auto 34px;
    border-radius: 0;
    clip-path: polygon(1% 0, 100% 1%, 99% 98%, 0 100%);
}

.layout--article .article-content {
    max-width: 760px;
    margin: 0 auto;
    color: #2e2a24;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.78;
}

.layout--article .article-content__text {
    margin-bottom: 22px;
}

.layout--article .article-content__text p {
    margin: 0 0 20px;
}

.layout--article .article-content strong,
.layout--article .article-content h2,
.layout--article .article-content h3 {
    color: #151515;
}

.layout--article .article-content a {
    color: #8b6426;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.layout--article .company-box--article,
.layout--article .same-brand-articles,
.layout--article .related {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.layout--article .article-placement {
    max-width: 948px;
    margin-left: auto;
    margin-right: auto;
}

/* Skoro.cz requested cleanup pass */
.top-scrap {
    font-family: "Skoro Scrap", "Segoe Print", cursive;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    padding-top: 24px;
}

.mid-grid {
    grid-template-columns: 300px 868px;
}

.lower-grid--single {
    display: grid;
    grid-template-columns: 1fr;
}

.lower-grid--single .guide {
    height: 236px;
    padding: 32px 36px;
}

.lower-grid--single .guide h2 {
    width: 380px;
}

.lower-grid--single .guide p {
    width: 420px;
}

.lower-grid--single .guide img {
    right: 330px;
    top: 34px;
    width: 240px;
    height: 160px;
}

.lower-grid--single .price {
    left: auto;
    right: 250px;
}

.relationships {
    height: 424px;
    padding: 18px 20px;
}

.rel-img {
    width: 318px;
    height: 260px;
}

.rel-title {
    left: 72px;
    bottom: 32px;
    width: 260px;
    font-size: 18px;
}

.rel-list {
    left: 374px;
    top: 72px;
    width: 150px;
}

.rel-mini {
    grid-template-columns: 52px 1fr;
    gap: 10px;
    margin-bottom: 17px;
    font-size: 12px;
    line-height: 1.08;
}

.rel-mini img {
    width: 52px;
    height: 52px;
}

.feature-slot--sidebar,
.feature-slot--sidebar.feature-slot--empty {
    width: 300px;
    height: 300px;
    min-height: 300px;
    max-width: 300px;
    padding: 0;
}

.feature-slot--sidebar img,
.feature-slot--sidebar .feature-slot__script {
    width: 300px;
    height: 300px;
    object-fit: cover;
}

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

.sidebar-box--placement h2 {
    display: none;
}

.sidebar-box--contests {
    padding: 18px;
    background: #f4ecdd;
}

.sidebar-box--contests h2 {
    color: #111;
    font-size: 18px;
}

.sidebar-box h2,
.sidebar-box--editorial h2,
.mini-link {
    color: #111 !important;
}

.sidebar-box--editorial {
    background: #f4ecdd;
}

.sidebar-box--editorial .mini-link {
    display: block;
    padding: 11px 0;
    border-top: 1px solid #dfd0bd;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 14px;
    line-height: 1.16;
    opacity: 1 !important;
}

.interaction-card {
    border: 1px solid #dfd0bd;
    background: #fff8ec;
    box-shadow: none;
}

.interaction-card .eyebrow {
    color: #e7aeb8;
}

.interaction-card h2 {
    color: #111;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 30px;
    line-height: 1.12;
}

.interaction-card__status {
    display: inline-block;
    margin: 10px 0 18px;
    padding: 7px 10px;
    background: #ead9bb;
    color: #111;
    font-weight: 800;
}

.contest-result--pending {
    min-height: auto;
    padding: 16px 18px;
    border: 1px dashed #c9b799;
    background: #fbf3e6;
    color: #332d26;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.contest-teaser {
    display: grid;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
    margin-top: 12px;
    padding: 12px;
    border: 1px solid #e2d3c1;
    background: #fbf5ea;
    box-shadow: 0 2px 5px rgba(50, 35, 20, .08);
    font-weight: 700;
}

.contest-teaser:first-of-type {
    border-top: 1px solid #e2d3c1;
}

.contest-teaser__media {
    width: 96px;
    height: 96px;
    margin: 0;
    padding: 5px;
    background: #fff;
    transform: rotate(-2deg);
    box-shadow: 0 2px 5px rgba(50, 35, 20, .14);
}

.contest-teaser img,
.contest-teaser__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contest-teaser__label {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 5px;
}

.contest-teaser strong {
    color: #151515;
    font-size: 14px;
    line-height: 1.12;
}

.contest-teaser small {
    margin-top: 6px;
    color: #5f554c;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.28;
}

.contest-teaser__status {
    border: 1px solid #111;
    border-radius: 0;
    padding: 2px 6px;
    background: #111;
    color: #fff;
    font-size: 9px;
}

.contest-result {
    border: 1px solid #dfd1bf;
    background: #f8efe2;
    box-shadow: none;
}

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

.contest-result__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
}

.contest-result__seal {
    background: #111;
    color: #fff;
    border-radius: 50%;
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    font-family: "Skoro Marker", "Segoe Print", cursive;
}

.contest-result h3 {
    color: #111;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 28px;
}

.contest-result__winners li {
    border: 1px solid #e2d3c1;
    background: #fff9ef;
}

.layout--article .related {
    padding: 24px 28px 28px;
    background: #f5ecdd;
}

.layout--article .related > .eyebrow {
    color: #e7aeb8;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 19px;
    letter-spacing: .04em;
}

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

.layout--article .related .article-card {
    min-height: 280px;
    background: #fbf3e6;
    border: 1px solid #ddcfbc;
    box-shadow: none;
}

.layout--article .related .article-card__image {
    width: 170px;
    height: 112px;
    margin: 0;
    border: 0;
    background: #fff;
}

.layout--article .related .article-card__image img {
    object-fit: cover;
}

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

.layout--article .related .article-card h2 {
    margin-bottom: 12px;
    color: #151515;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 21px;
    line-height: 1.08;
}

.layout--article .related .article-card p {
    color: #332d26;
    font-family: "Skoro Scrap", "Segoe Print", cursive;
    font-size: 19px;
    line-height: 1.18;
}

.author-note {
    max-width: 760px;
    margin: 34px auto 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
    border: 1px solid #dfd0bd;
    background: #fff8ec;
}

.author-note__avatar {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #111;
    color: #fff;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 28px;
}

.author-note__eyebrow {
    margin: 0 0 5px;
    color: #8b6426;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-weight: 800;
}

.author-note h2 {
    margin: 0 0 8px;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 24px;
}

.author-note p {
    margin: 0 0 9px;
    color: #332d26;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.layout--article .company-box--article {
    max-width: 760px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 20px;
    border: 1px solid #dfd0bd;
    border-left: 8px solid #d9bd78;
    background: #fdf6ea;
}

.layout--article .company-box__eyebrow {
    color: #8b6426;
}

.layout--article .company-box__name {
    color: #111;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 28px;
}

.layout--article .company-box__text {
    color: #443b32;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    line-height: 1.45;
}

.layout--article .company-box__links {
    justify-content: flex-end;
}

.layout--article .company-box__link {
    padding: 10px 14px;
    background: #111;
}

.footer {
    grid-template-columns: 120px 250px 120px 130px 140px 240px;
    min-height: 190px;
    border-top: 2px solid #dfd0bd;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .28), transparent),
        #f5ecdd;
}

.footer .foot-logo {
    font-size: 28px;
}

.footer p {
    color: #342d26;
    font-size: 11px;
}

.footer h4 {
    font-size: 11px;
}

.footer li {
    margin-bottom: 3px;
}

/* Skoro.cz final screenshot corrections */
.page-title {
    padding: 30px 36px;
    background: #f1e4d2;
}

.page-title .eyebrow,
.page-title h1,
.listing-page .article-card h2,
.listing-page .article-card h2 a,
.article-grid .article-card h2,
.article-grid .article-card h2 a {
    color: #111 !important;
    opacity: 1 !important;
}

.page-title .eyebrow {
    color: #e7aeb8 !important;
    font-size: 14px;
}

.page-title h1 {
    font-size: 46px;
    line-height: 1;
}

.listing-page {
    padding: 24px;
}

.listing-page .article-grid {
    gap: 18px;
}

.listing-page .article-card {
    min-height: 316px;
    background: #fbf2e6;
}

.listing-page .article-card__image {
    width: 158px;
    height: 112px;
    margin: 0 0 16px;
    border: 0;
    background: #fff;
}

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

.listing-page .article-card .eyebrow {
    color: #e7aeb8 !important;
    font-size: 14px;
}

.listing-page .article-card h2 {
    margin-bottom: 14px;
    font-size: 24px;
    line-height: 1.08;
}

.listing-page .article-card p {
    color: #302820;
    font-family: "Skoro Scrap", "Segoe Print", cursive;
    font-size: 19px;
    line-height: 1.26;
}

.main-grid {
    grid-template-columns: 548px 312px 304px;
    gap: 18px;
}

.relationships,
.therapist,
.community {
    height: 432px;
}

.relationships {
    padding: 18px 18px 20px;
}

.relationships .card-head,
.therapist .card-head,
.community .card-head {
    align-items: flex-start;
    gap: 12px;
}

.rel-img {
    width: 308px;
    height: 266px;
}

.rel-title {
    left: 72px;
    bottom: 38px;
    width: 246px;
    padding: 15px 17px;
    font-size: 19px;
    line-height: 1.12;
}

.rel-list {
    left: 348px;
    top: 66px;
    width: 166px;
}

.rel-mini {
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 11px;
    margin-bottom: 14px;
    font-size: 12px;
    line-height: 1.1;
}

.rel-mini img {
    width: 54px;
    height: 54px;
}

.rel-mini span {
    display: block;
    min-width: 0;
}

.therapist {
    padding: 18px 18px 20px;
    position: relative;
}

.therapist .card-head span {
    max-width: 132px;
    line-height: 1.08;
}

.therapist .more {
    max-width: 112px;
    text-align: right;
    line-height: 1.1;
}

.therapist > img {
    position: absolute;
    left: 22px;
    top: 72px;
    width: 98px;
    height: 138px;
}

.therapist .ask {
    position: absolute;
    left: 148px;
    top: 86px;
    width: 128px;
    padding: 13px;
    font-size: 18px;
    line-height: 1.16;
}

.therapist .answer {
    position: absolute;
    left: 22px;
    right: 20px;
    top: 232px;
    max-height: 64px;
    margin: 0;
    overflow: hidden;
    font-size: 18px;
    line-height: 1.12;
}

.therapist .byline {
    position: absolute;
    left: 22px;
    right: 20px;
    top: 310px;
    margin: 0;
}

.therapist .btn {
    position: absolute;
    left: 22px;
    bottom: 20px;
}

.community {
    padding: 18px 16px 74px;
}

.post {
    width: 235px;
    min-height: 76px;
    margin-left: 34px;
    margin-bottom: 13px;
    padding: 13px 14px 12px 44px;
}

.post p {
    font-size: 11px;
    line-height: 1.25;
}

.post::before {
    left: 16px;
}

.community .btn {
    right: 18px;
    bottom: 18px;
}

.recs {
    overflow: hidden;
}

.recs__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.rec-controls {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 10px;
    font-weight: 800;
}

.rec-control {
    width: 24px;
    height: 24px;
    display: inline-grid;
    place-items: center;
    border: 1px solid #111;
    border-radius: 50%;
    background: #fffaf2;
    color: #111;
    cursor: pointer;
    line-height: 1;
}

.rec-control:disabled {
    opacity: .4;
    cursor: default;
}

.rec[hidden] {
    display: none !important;
}

.footer {
    height: auto;
    min-height: 224px;
    grid-template-columns: 130px 250px 118px 132px 138px 230px;
    gap: 22px;
    padding: 24px 28px 50px;
}

.footer .help {
    justify-self: end;
    align-self: start;
    width: 230px;
    min-height: 104px;
    padding: 24px 28px;
    font-size: 11px;
    line-height: 1.22;
}

.legal {
    left: 28px;
    right: 28px;
    bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 18px;
    align-items: end;
    font-size: 8px;
}

.legal span:nth-child(2) {
    text-align: center;
}

.legal span:nth-child(3),
.legal span:nth-child(4) {
    text-align: right;
}

/* Skoro.cz visual identity pass: larger media, own footer, own contests */
.listing-page .article-card {
    min-height: 382px;
}

.listing-page .article-card__image {
    width: 100%;
    height: 176px;
    margin: 0 0 18px;
}

.listing-page .article-card__body {
    padding: 0 20px 22px;
}

.layout--article .related .article-card {
    min-height: 360px;
}

.layout--article .related .article-card__image {
    width: 100%;
    height: 172px;
    margin: 0;
}

.layout--article .related .article-card__body {
    padding: 20px 22px 24px;
}

.layout--article .related .article-card h2 {
    font-size: 24px;
}

.layout--article .company-box--article {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 26px 30px 28px;
    border: 1px solid #dfd0bd;
    border-top: 8px solid #d9bd78;
    border-left: 1px solid #dfd0bd;
    background:
        linear-gradient(90deg, rgba(217, 189, 120, .18), transparent 42%),
        #fff7eb;
}

.layout--article .company-box--article::after {
    content: "";
    position: absolute;
    right: 28px;
    top: -13px;
    width: 118px;
    height: 24px;
    background: rgba(219, 193, 146, .62);
    transform: rotate(2deg);
}

.layout--article .company-box__eyebrow {
    color: #9e762f;
    font-size: 12px;
}

.layout--article .company-box__name {
    display: inline-block;
    margin: 4px 0 6px;
    font-size: 31px;
}

.layout--article .company-box__text {
    max-width: 640px;
    font-size: 15px;
}

.layout--article .company-box__links {
    justify-content: flex-start;
}

.layout--article .company-box__link {
    padding: 11px 16px;
    background: #111;
    box-shadow: 5px 5px 0 #d9bd78;
}

.sidebar-box--contests {
    padding: 18px;
    background: #f7efe2;
    border: 1px solid #dfd0bd;
}

.sidebar-box--contests h2 {
    margin-bottom: 14px;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 24px;
}

.contest-teaser {
    display: block;
    margin-top: 14px;
    padding: 12px;
    border: 1px solid #d9c8ad;
    background: #fff8ec;
    box-shadow: 4px 4px 0 rgba(217, 189, 120, .35);
    color: #111;
    transform: none;
}

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

.contest-teaser__media {
    width: 100%;
    height: 138px;
    margin: 0 0 12px;
    padding: 0;
    border: 6px solid #fff;
    background: #fff;
    box-shadow: 0 2px 6px rgba(50, 35, 20, .14);
    transform: rotate(-1deg);
}

.contest-teaser img,
.contest-teaser__media img {
    object-fit: cover;
}

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

.contest-teaser__meta .eyebrow {
    margin: 0;
    color: #e7aeb8;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 14px;
}

.contest-teaser time,
.contest-teaser__status {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    padding: 3px 7px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.contest-teaser__body {
    display: block;
}

.contest-teaser strong {
    display: block;
    color: #151515;
    font-size: 18px;
    line-height: 1.08;
}

.contest-teaser small {
    display: block;
    margin-top: 9px;
    color: #5d5147;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.3;
}

.contest-teaser--ended img {
    filter: none;
    opacity: 1;
}

.sidebar-box--contests .contest-teaser {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 10px 13px;
    align-items: start;
}

.sidebar-box--contests .contest-teaser__media {
    grid-row: 1 / span 2;
    width: 86px;
    height: 86px;
    margin: 4px 0 0;
    overflow: hidden;
    border: 5px solid #fff;
    border-radius: 50%;
    transform: rotate(-4deg);
}

.sidebar-box--contests .contest-teaser__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 72% 58%;
    transform: scale(1.45);
}

.sidebar-box--contests .contest-teaser__meta {
    margin-bottom: 0;
}

.sidebar-box--contests .contest-teaser__body {
    grid-column: 2;
}

.sidebar-box--contests .contest-teaser strong {
    font-size: 14px;
    line-height: 1.18;
}

.sidebar-box--contests .contest-teaser small {
    font-size: 11px;
}

.contest-result {
    padding: 24px 26px;
    border: 1px solid #d9c8ad;
    background: #fff8ec;
    box-shadow: 6px 6px 0 rgba(217, 189, 120, .35);
}

.contest-result__header {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
}

.contest-result__seal {
    justify-self: start;
    width: auto;
    height: auto;
    min-height: 0;
    padding: 8px 14px;
    border-radius: 0;
    background: #111;
}

.contest-result h3 {
    max-width: 620px;
    font-size: 32px;
}

.contest-result__winners li {
    background: #fbf2e6;
    box-shadow: 3px 3px 0 rgba(217, 189, 120, .28);
}

.mid-grid {
    align-items: stretch;
}

.challenge,
.recs--marquee {
    height: 242px;
}

.recs--marquee {
    padding: 24px 24px 26px;
}

.recs--marquee .recs__head {
    margin-bottom: 14px;
}

.rec-marquee {
    height: 168px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 28px, #000 calc(100% - 28px), transparent);
}

.rec-track {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: rec-marquee 34s linear infinite;
}

.rec-marquee:hover .rec-track {
    animation-play-state: paused;
}

.recs--marquee .rec {
    flex: 0 0 148px;
    font-size: 12px;
    line-height: 1.16;
    padding-bottom: 4px;
}

.recs--marquee .rec img {
    width: 148px;
    height: 96px;
    margin-bottom: 9px;
    object-fit: cover;
}

@keyframes rec-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.footer--skoro {
    height: auto;
    min-height: 0;
    grid-template-columns: 330px minmax(0, 1fr) 260px;
    grid-template-areas:
        "brand map help"
        "brand tools help"
        "legal legal legal";
    gap: 22px 34px;
    padding: 30px 34px 24px;
    background:
        linear-gradient(90deg, rgba(217, 189, 120, .18), transparent 45%),
        #f6eddf;
}

.footer__brand {
    grid-area: brand;
}

.footer--skoro .foot-logo {
    margin-bottom: 12px;
    font-size: 34px;
}

.footer__brand p {
    max-width: 285px;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.35;
}

.footer__motto {
    display: inline-block;
    padding: 12px 18px;
    background: #ead9bb;
    transform: rotate(-3deg);
    font-size: 20px;
}

.footer__map {
    grid-area: map;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 10px;
}

.footer__map a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 7px 11px;
    border: 1px solid #d9c8ad;
    background: #fff8ec;
    font-family: "Skoro Marker", "Segoe Print", cursive;
    font-size: 13px;
    font-weight: 800;
}

.footer__tools {
    grid-area: tools;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid #d9c8ad;
    background: rgba(255, 248, 236, .72);
}

.footer__tools h4 {
    margin: 0;
    font-size: 13px;
}

.footer__tools ul {
    columns: 2;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 11px;
    line-height: 1.45;
}

.footer__tools a,
.footer__link-button {
    border: 0;
    padding: 0;
    background: transparent;
    color: #111;
    font: inherit;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
}

.footer__tools a:hover,
.footer__link-button:hover,
.footer__tools a:focus-visible,
.footer__link-button:focus-visible {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.footer--skoro .help {
    grid-area: help;
    justify-self: stretch;
    align-self: stretch;
    width: auto;
    min-height: 0;
    padding: 28px 30px;
    border-radius: 0;
    background: #cfd4ad;
    box-shadow: 7px 7px 0 rgba(217, 189, 120, .42);
    transform: rotate(1deg);
    font-size: 14px;
    line-height: 1.35;
}

.footer--skoro .legal {
    position: static;
    grid-area: legal;
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid #dfd0bd;
    font-size: 9px;
}

/* Final Skoro.cz layout tightening */
.hero-row {
    margin-bottom: 12px;
}

.catbar {
    height: 64px;
    margin-top: 8px;
    padding: 6px 18px;
    gap: 8px;
    transform: rotate(-.25deg);
}

.cat {
    display: flex;
    min-width: 0;
    height: 52px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
    font-size: 10px;
    line-height: 1.05;
}

.cat .ico {
    width: 28px;
    height: 28px;
    margin: 0;
    flex: 0 0 auto;
    font-size: 14px;
}

.main-grid {
    margin-top: 12px;
}

.relationships,
.therapist,
.community {
    height: 456px;
}

.relationships {
    overflow: hidden;
}

.rel-img {
    width: 306px;
    height: 232px;
}

.rel-title {
    left: 92px;
    bottom: 48px;
    width: 248px;
    font-size: 18px;
    line-height: 1.2;
}

.rel-list {
    left: 350px;
    top: 54px;
    width: 150px;
}

.rel-mini {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    margin-bottom: 13px;
    font-size: 11px;
    line-height: 1.16;
}

.rel-mini img {
    width: 44px;
    height: 54px;
}

.therapist {
    padding-bottom: 70px;
}

.therapist > img {
    width: 86px;
    height: 118px;
}

.therapist .ask {
    left: 136px;
    top: 78px;
    width: 132px;
    height: auto;
    min-height: 94px;
    padding: 18px 12px 12px;
    font-size: 16px;
    line-height: 1.18;
}

.therapist .answer {
    max-height: 88px;
    margin: 24px 0 14px;
    overflow: hidden;
    font-size: 20px;
    line-height: 1.12;
}

.therapist .byline {
    max-height: 44px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.25;
}

.therapist .btn {
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.community {
    padding-bottom: 76px;
}

.post {
    width: 236px;
    min-height: 76px;
    margin-left: 28px;
    margin-bottom: 12px;
    padding: 12px 14px 10px 38px;
}

.post p {
    font-size: 12px;
    line-height: 1.25;
}

.community .btn {
    right: 24px;
    bottom: 20px;
}

.mood--poll {
    height: 164px;
    padding: 18px 20px 16px;
}

.mood-poll {
    margin-top: 9px;
}

.mood-poll__choices {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.mood-choice {
    position: relative;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mood-choice input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.mood-choice i,
.mood-choice > span {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 19px;
}

.mood-choice input:checked + i,
.mood-choice input:checked + span {
    border-color: #111;
    background: #fff8ea;
}

.mood-choice i + span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.mood-poll__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 9px;
}

.mood-poll__foot button {
    border: 0;
    background: #111;
    color: #fff;
    padding: 6px 9px;
    font-family: "Skoro Marker", "Trebuchet MS", Arial, sans-serif;
    font-size: 10px;
    font-weight: 900;
    cursor: pointer;
}

.mood-poll__foot button:disabled {
    opacity: .45;
    cursor: default;
}

.recs,
.challenge {
    height: 202px;
}

.rec-marquee {
    min-height: 144px;
}

.recs--marquee .rec {
    flex-basis: 166px;
    color: #111;
    text-decoration: none;
}

.recs--marquee .rec img {
    width: 166px;
    height: 108px;
}

.recs--marquee .rec span {
    display: block;
}

.article-row {
    height: auto;
    min-height: 258px;
    padding: 22px 22px 26px;
}

.articles {
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(210px, 1.6fr);
    gap: 18px;
    align-items: start;
}

.article {
    min-width: 0;
    color: #111;
    text-decoration: none;
    font-size: 13px;
    line-height: 1.16;
}

.article img {
    width: 100%;
    height: 94px;
}

.quote {
    min-height: 124px;
    padding: 22px 26px;
}

.footer--skoro .help {
    border: 0;
    color: #111;
    text-align: left;
    cursor: pointer;
}

.footer--skoro .help:hover,
.footer--skoro .help:focus-visible {
    transform: rotate(1deg) translateY(-2px);
}

.public-modal--crisis .public-modal__dialog--crisis {
    max-width: 760px;
    background: #fff8ec;
}

.crisis-modal-content .article-content__text {
    margin-bottom: 16px;
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.62;
}

.crisis-modal-content a {
    color: #7a511c;
    font-weight: 800;
    text-decoration: underline;
}

.interaction-card__deadline {
    display: inline-block;
    margin: 0 0 14px;
    padding: 5px 9px;
    background: #ead9bb;
    color: #111;
    font-size: 12px;
    font-weight: 800;
}

.choice-row--smileys,
.choice-row--numbers,
.choice-row--scale_1_5 {
    display: inline-flex;
    width: auto;
    min-width: 58px;
    margin-right: 8px;
}

.choice-row__symbol,
.choice-row__number {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 999px;
    background: #fff8ec;
    font-size: 20px;
    font-weight: 900;
}

.mid-grid {
    align-items: start;
}

.challenge {
    height: 202px;
}

.recs {
    height: 244px;
}

.rec-marquee {
    height: 184px;
}

.recs--marquee .rec {
    padding-bottom: 12px;
}

/* Header composition pass */
.hero-row {
    grid-template-columns: minmax(0, 884px) 300px;
    gap: 16px;
    margin-bottom: 14px;
}

.hero {
    height: 350px;
    padding: 25px 0 0 32px;
}

.hero h2 {
    max-width: 405px;
    margin: 16px 0 24px;
    font-size: 36px;
    line-height: 1.08;
}

.hero-photo {
    right: 24px;
    top: 18px;
    width: 486px;
    height: 314px;
}

.hero .note {
    left: 500px;
    top: 184px;
    width: 132px;
    height: 128px;
}

.catbar {
    height: 76px;
    padding: 8px 20px;
}

.cat {
    height: 62px;
    gap: 5px;
}

.cat .ico {
    width: 32px;
    height: 32px;
    font-size: 15px;
}

.mood--poll {
    height: 166px;
    display: flex;
    flex-direction: column;
    padding: 18px 20px 14px;
}

.mood--poll h3 {
    margin: 0 0 17px;
}

.mood--poll .question {
    margin-bottom: 10px;
    line-height: 1.2;
}

.mood-poll {
    display: flex;
    min-height: 0;
    flex: 1;
    flex-direction: column;
    margin-top: 0;
}

.mood-poll__choices {
    gap: 9px;
}

.mood-choice,
.mood-choice i,
.mood-choice > span {
    width: 26px;
    height: 26px;
}

.mood-choice i,
.mood-choice > span {
    font-size: 18px;
}

.mood-poll__foot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 12px;
    margin-top: auto;
}

.mood--poll small {
    display: block;
    margin: 0;
    padding-bottom: 2px;
    text-align: center;
    line-height: 1.12;
}

.mood-poll__foot button {
    min-width: 84px;
    min-height: 28px;
    padding: 6px 12px;
    white-space: nowrap;
}
