* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--color-bg);
    color: var(--color-text);
}

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

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-accent-alt);
    outline-offset: 2px;
    border-radius: var(--radius);
}

::selection {
    background: var(--color-accent);
    color: #111827;
}

.max-w-6xl {
    max-width: 72rem;
}

.review-hero {
    position: relative;
    height: 360px;
    overflow: hidden;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-surface);
}

.review-hero__bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px);
    transform: scale(1.08);
}

.review-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.15), rgba(15, 23, 42, 0.45));
}

.review-hero__content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding-bottom: 32px;
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 50;
}

.cookie-banner[data-hidden='true'] {
    display: none;
}

.cookie-banner__content {
    max-width: 720px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: var(--color-text);
}

.cookie-banner__content a {
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.article-body {
    color: var(--color-text);
    line-height: 1.75;
    font-size: 1.05rem;
}

.article-body > *:first-child {
    margin-top: 0;
}

.article-body > *:last-child {
    margin-bottom: 0;
}

.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
    color: var(--color-text);
    line-height: 1.25;
    font-weight: 700;
    margin: 1.75em 0 0.65em;
}

.article-body h1 {
    font-size: 2rem;
}

.article-body h2 {
    font-size: 1.6rem;
}

.article-body h3 {
    font-size: 1.3rem;
}

.article-body p {
    margin: 0 0 1.1em;
    color: var(--color-text);
}

.article-body ul,
.article-body ol {
    margin: 0 0 1.25em;
    padding-left: 1.35em;
}

.article-body li {
    margin-bottom: 0.45em;
}

.article-body a {
    color: var(--color-accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.article-body a:hover {
    opacity: 0.85;
}

.article-body strong {
    font-weight: 700;
}

.article-body blockquote {
    margin: 1.5em 0;
    padding: 0.8em 1em;
    border-left: 4px solid var(--color-accent);
    background: var(--color-surface-alt);
    border-radius: 10px;
    color: var(--color-text);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.25em 0;
}

.article-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25em 0;
    display: block;
    overflow-x: auto;
}

.article-body th,
.article-body td {
    border: 1px solid var(--color-border);
    padding: 10px 12px;
    text-align: left;
}

.article-body th {
    background: var(--color-surface-alt);
    font-weight: 600;
}

.article-body hr {
    border: 0;
    border-top: 1px solid var(--color-border);
    margin: 1.8em 0;
}

.article-body pre {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    overflow-x: auto;
    margin: 1.25em 0;
}

.article-body code {
    background: var(--color-surface-alt);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.1em 0.35em;
    font-size: 0.9em;
}

.article-body pre code {
    background: transparent;
    border: 0;
    padding: 0;
}
