:root {
color-scheme: light;
--bg: #f8f6f2;
--surface: #ffffff;
--surface-alt: #f1eee6;
--ink: #24312f;
--muted: #5c6a68;
--brand: #c7a96a;
--brand-dark: #9f7f3e;
--line: #e2ddd1;
--shadow: 0 20px 60px rgba(36, 49, 47, 0.08);
--radius: 18px;
}
@media (max-width: 600px) {
.hero-actions {
flex-direction: row;
flex-wrap: wrap;
gap: 0.8rem;
}
.hero-actions .cta,
.hero-actions .ghost {
display: inline-flex;
width: auto;
}
}
* {
box-sizing: border-box;
}
body {
margin: 0;
font-family: "Source Sans 3", sans-serif;
color: var(--ink);
background: radial-gradient(circle at top left, #f6efe1 0%, #f8f6f2 50%)
fixed;
line-height: 1.6;
}
.skip-link {
position: absolute;
top: -40px;
left: 16px;
background: var(--brand);
color: #1f1a0f;
padding: 0.5rem 1rem;
border-radius: 999px;
font-weight: 700;
transition: top 0.2s ease;
z-index: 20;
}
.skip-link:focus {
top: 12px;
}
h1,
h2,
h3,
h4 {
font-family: "Spectral", serif;
margin: 0 0 0.6rem;
color: #1e2a29;
}
p {
margin: 0 0 1rem;
color: var(--muted);
}
a {
color: inherit;
text-decoration: none;
}
img {
max-width: 100%;
display: block;
}
.page {
min-height: 100vh;
}
.anchor {
position: relative;
top: -80px;
height: 0;
}
.container {
width: min(1120px, 92vw);
margin: 0 auto;
}
.site-header {
position: sticky;
top: 0;
background: rgba(248, 246, 242, 0.9);
backdrop-filter: blur(16px);
border-bottom: 1px solid var(--line);
z-index: 10;
}
.header-grid {
display: grid;
grid-template-columns: 1fr auto auto;
gap: 1.5rem;
align-items: center;
padding: 1rem 0;
}
.logo {
display: flex;
align-items: center;
gap: 0.7rem;
}
.logo-text {
font-size: 0.9rem;
color: var(--muted);
font-weight: 600;
}
.logo-image {
width: 48px;
height: 48px;
object-fit: contain;
}
.nav {
display: flex;
gap: 1.2rem;
font-weight: 600;
color: var(--ink);
}
.nav a {
position: relative;
padding-bottom: 0.2rem;
}
.nav a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0;
height: 2px;
background: var(--brand);
transition: width 0.2s ease;
}
.nav a:hover::after,
.nav a:focus::after {
width: 100%;
}
.cta {
background: var(--brand);
color: #1f1a0f;
padding: 0.75rem 1.6rem;
border-radius: 999px;
font-weight: 700;
border: none;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 10px 25px rgba(199, 169, 106, 0.25);
transition: transform 0.2s ease, box-shadow 0.2s ease;
cursor: pointer;
}
.cta:hover,
.cta:focus {
transform: translateY(-2px);
box-shadow: 0 15px 35px rgba(199, 169, 106, 0.35);
}
.ghost {
padding: 0.7rem 1.4rem;
border-radius: 999px;
border: 1px solid var(--line);
color: var(--ink);
font-weight: 600;
display: inline-flex;
align-items: center;
justify-content: center;
}
.text-link {
font-weight: 600;
color: var(--brand-dark);
}
.overview-action {
display: flex;
justify-content: flex-end;
margin-top: 1rem;
}
.hero {
padding: 3rem 0 2.5rem;
position: relative;
overflow: hidden;
}
.hero::before {
content: "";
position: absolute;
inset: 0;
background: url("images/hero.webp") center/cover no-repeat;
opacity: 0.12;
pointer-events: none;
}
.hero > .container {
position: relative;
z-index: 1;
}
.hero-compact {
padding: 4.5rem 0 3rem;
}
.articles-page .hero-compact {
padding-bottom: 2rem;
}
.articles-page .section:first-of-type {
padding-top: 2rem;
}
.test-page .hero-compact {
padding-top: 2rem;
padding-bottom: 0;
}
.test-page .section:first-of-type {
padding-top: 0;
}
.test-page main > .section {
padding-top: 0.4rem;
padding-bottom: 1.2rem;
}
.test-page .ad-slot {
margin-top: 0;
min-height: 140px;
}
.test-page .test-shell {
gap: 0.6rem;
}
.test-page .hero-compact .lead {
margin-bottom: 0;
}
.hero-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 3rem;
align-items: center;
}
.hero h1 {
font-size: clamp(1.9rem, 2.6vw, 2.9rem);
}
.eyebrow {
text-transform: uppercase;
letter-spacing: 0.18em;
font-size: 0.75rem;
font-weight: 700;
color: var(--brand-dark);
margin-bottom: 1rem;
}
.lead {
font-size: 1.1rem;
}
.hero-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 2rem 0;
}
.hero-actions .ghost {
background: #f6ead8;
border: 1px solid #d9b77a;
color: #3f2a12;
font-weight: 700;
box-shadow: 0 8px 18px rgba(199, 169, 106, 0.2);
}
.hero-actions .ghost:hover,
.hero-actions .ghost:focus {
transform: translateY(-2px);
box-shadow: 0 14px 28px rgba(199, 169, 106, 0.28);
}
.hero-meta {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 1rem;
}
.hero-meta strong {
display: block;
font-size: 1.2rem;
color: var(--ink);
}
.hero-card {
background: var(--surface);
padding: 2rem;
border-radius: var(--radius);
box-shadow: var(--shadow);
border: 1px solid var(--line);
}
.hero-image {
width: 100%;
border-radius: 14px;
margin-bottom: 1.5rem;
object-fit: cover;
aspect-ratio: 16 / 10;
}
.hero-card ul {
padding-left: 1.2rem;
color: var(--muted);
}
.name-scroller {
background: linear-gradient(120deg, #f3ead8 0%, #f8f3e8 100%);
border-top: 1px solid var(--line);
border-bottom: 1px solid var(--line);
overflow: hidden;
padding: 0.7rem 0;
}
.name-track {
display: flex;
width: max-content;
gap: 0;
animation: nameScroll 36s linear infinite;
will-change: transform;
}
.name-list {
display: flex;
align-items: center;
gap: 1.4rem;
font-weight: 700;
color: #5c4a2f;
letter-spacing: 0.02em;
white-space: nowrap;
padding: 0 1.2rem;
flex: 0 0 auto;
}
.name-dot {
color: var(--brand-dark);
font-size: 1.1rem;
}
@keyframes nameScroll {
from {
transform: translateX(0);
}
to {
transform: translateX(-50%);
}
}
@media (prefers-reduced-motion: reduce) {
.name-track {
animation: none;
}
}
.section {
padding: 2.5rem 0;
}
.tests-page .section {
padding: 2rem 0;
}
section[id] {
scroll-margin-top: 110px;
}
.section.soft {
background: var(--surface-alt);
}
.donate {
background: linear-gradient(120deg, #f4efe3 0%, #f8f6f2 45%, #fbf9f4 100%);
}
.donate-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
align-items: center;
}
.donate-copy h2 {
font-size: clamp(2rem, 2.6vw, 2.6rem);
}
.donate-copy {
order: 2;
}
.donate-panel {
order: 1;
}
.donate-badge {
display: inline-flex;
padding: 0.3rem 0.9rem;
border-radius: 999px;
background: rgba(199, 169, 106, 0.25);
color: var(--brand-dark);
font-weight: 700;
font-size: 0.8rem;
letter-spacing: 0.08em;
text-transform: uppercase;
margin-bottom: 1rem;
}
.donate-list {
list-style: none;
padding: 0;
margin: 1.5rem 0;
display: grid;
gap: 0.8rem;
color: var(--muted);
}
.donate-list li {
display: flex;
gap: 0.6rem;
align-items: flex-start;
}
.donate-list li::before {
content: "✓";
color: var(--brand-dark);
font-weight: 700;
}
.donate-actions {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.8rem 0;
}
.donate-trust {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 1rem;
}
.donate-trust strong {
display: block;
font-size: 1.2rem;
color: var(--ink);
}
.donate-panel {
background: var(--surface);
border-radius: var(--radius);
padding: 2rem;
border: 1px solid var(--line);
box-shadow: 0 30px 60px rgba(36, 49, 47, 0.12);
}
.donate-image {
width: 100%;
border-radius: 14px;
margin-bottom: 1.2rem;
object-fit: cover;
max-height: 220px;
aspect-ratio: 16 / 9;
}
.donate-subtitle {
margin-top: -0.4rem;
}
.donate-fast {
margin: 1rem 0 0.6rem;
font-weight: 600;
color: #6a4b2b;
text-align: center;
}
.donate-amounts {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 0.8rem;
margin: 0 0 1.2rem;
}
.amount-btn {
border: 1px solid var(--line);
background: #fdf7ef;
border-radius: 12px;
padding: 0.7rem 0;
font-weight: 700;
color: var(--brand-dark);
cursor: pointer;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.amount-btn.is-active {
background: #ead7b6;
border-color: var(--brand-dark);
color: #3f2a12;
box-shadow: inset 0 2px 6px rgba(63, 42, 18, 0.25);
transform: translateY(1px);
}
.amount-btn:hover {
transform: translateY(-2px);
box-shadow: 0 12px 25px rgba(199, 169, 106, 0.2);
}
.donate-pay {
background: #f6ead8;
border-radius: 16px;
padding: 1rem 1.2rem;
color: #6a4b2b;
text-align: center;
margin-bottom: 1rem;
}
.pay-buttons {
display: grid;
grid-template-columns: 1fr;
gap: 0.6rem;
}
.pay-request {
display: flex;
align-items: center;
justify-content: center;
min-height: 52px;
width: 100%;
margin-bottom: 0.2rem;
}
.pay-request > * {
width: 100%;
height: 52px;
}
.pay-request[hidden],
.card-pay[hidden] {
display: none;
}
.pay-btn {
border: none;
background: var(--brand);
color: #1f1a0f;
font-weight: 700;
border-radius: 10px;
padding: 0.6rem 0.4rem;
cursor: pointer;
}
.pay-input {
border: 1px solid var(--line);
border-radius: 10px;
padding: 0.9rem 1.5rem;
min-height: 52px;
line-height: 1.1;
text-align: center;
font-weight: 800;
font-size: 1.4rem;
color: #1f1a0f;
background: #fff;
font-family: inherit;
width: 100%;
}
.pay-input-wrap {
position: relative;
display: flex;
align-items: center;
width: 100%;
}
.pay-currency {
position: absolute;
right: 0.55rem;
top: 50%;
transform: translateY(-50%);
font-weight: 700;
color: #6a4b2b;
pointer-events: none;
}
.pay-input::-webkit-outer-spin-button,
.pay-input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.pay-input[type="number"] {
-moz-appearance: textfield;
}
.pay-status {
margin: 0.4rem 0 0;
font-size: 0.9rem;
color: #6a4b2b;
min-height: 0;
}
.pay-status:empty {
display: none;
}
.pay-status[data-state="error"] {
color: #9b2c2c;
}
.pay-status[data-state="success"] {
color: #1f6b3c;
}
.card-pay {
margin-top: 0.2rem;
display: grid;
gap: 0.6rem;
}
.card-input {
padding: 0.85rem 0.9rem;
border-radius: 12px;
border: 1px solid var(--line);
background: #fff;
}
.card-btn {
border: none;
background: #111;
color: #fff;
font-weight: 700;
border-radius: 12px;
padding: 0.75rem 1rem;
cursor: pointer;
}
.card-btn:disabled {
opacity: 0.7;
cursor: not-allowed;
}
@media (max-width: 600px) {
.header-grid {
grid-template-columns: auto 1fr;
justify-items: start;
align-items: center;
text-align: left;
gap: 0.8rem;
}
.logo {
flex-direction: row;
align-items: center;
gap: 0.6rem;
}
.logo-image {
width: 40px;
height: 40px;
}
.logo-text {
font-size: 0.78rem;
}
.nav {
justify-content: flex-end;
gap: 0.8rem;
}
.nav a {
font-size: 0.85rem;
}
.hero-meta {
display: none;
}
}
@media (max-width: 720px) {
.pay-buttons {
grid-template-columns: 1fr;
}
.iban-row {
grid-template-columns: 1fr;
text-align: center;
}
.iban-info {
justify-items: center;
}
.copy-btn {
justify-self: center;
margin-top: 0.2rem;
}
}
.donate-iban {
border: 1px dashed var(--line);
border-radius: 14px;
padding: 1rem 1.2rem;
background: #fdf7ef;
color: #6a4b2b;
}
.donate-iban p {
margin: 0 0 0.6rem;
color: inherit;
}
.iban-row {
display: grid;
grid-template-columns: 1fr auto;
align-items: center;
gap: 0.8rem;
font-weight: 600;
text-align: left;
}
.iban-info {
display: grid;
gap: 0.3rem;
}
.copy-btn {
border: 1px solid var(--line);
background: #f8efe2;
border-radius: 10px;
padding: 0.4rem 0.8rem;
font-weight: 600;
color: #6a4b2b;
cursor: pointer;
align-self: center;
}
@media (max-width: 720px) {
.iban-row {
grid-template-columns: 1fr;
text-align: center;
font-size: 0.92rem;
}
.iban-info {
justify-items: center;
}
.iban-info strong,
.iban-note {
font-size: 0.92rem;
}
.copy-btn {
justify-self: center;
margin-top: 0.2rem;
}
}
.iban-note {
margin-top: 0.6rem;
font-weight: 600;
}
.iban-divider {
position: relative;
text-align: center;
margin: 1.2rem 0 0.8rem;
color: #6a4b2b;
font-weight: 600;
}
.iban-divider::before,
.iban-divider::after {
content: "";
position: absolute;
top: 50%;
width: 36%;
border-top: 1px dashed var(--line);
}
.iban-divider::before {
left: 0;
}
.iban-divider::after {
right: 0;
}
.iban-divider span {
background: var(--surface);
padding: 0 0.6rem;
}
.donate-panel .iban {
font-size: 1.1rem;
color: var(--ink);
}
.donate-highlight {
background: var(--surface-alt);
border-radius: 14px;
padding: 1rem 1.2rem;
margin: 1.4rem 0;
}
.article {
max-width: 920px;
}
.article-back {
position: fixed;
right: 24px;
bottom: 24px;
z-index: 20;
}
.article-back .ghost {
background: var(--surface);
box-shadow: 0 12px 30px rgba(36, 49, 47, 0.18);
}
.cookie-banner {
position: fixed;
left: 24px;
bottom: 24px;
max-width: 320px;
background: rgba(255, 255, 255, 0.92);
border: 1px solid var(--line);
border-radius: 16px;
padding: 1rem 1.2rem;
box-shadow: 0 20px 50px rgba(36, 49, 47, 0.12);
backdrop-filter: blur(12px);
z-index: 30;
font-size: 0.95rem;
}
.cookie-banner p {
margin: 0 0 0.8rem;
color: var(--muted);
}
.cookie-actions {
display: flex;
gap: 0.6rem;
justify-content: flex-end;
flex-wrap: wrap;
}
.cookie-actions .ghost,
.cookie-actions .cta {
padding: 0.5rem 1rem;
font-size: 0.9rem;
}
.test-shell {
display: grid;
gap: 2rem;
}
.ad-slot {
min-height: 140px;
border-radius: 16px;
border: 1px dashed var(--line);
background: rgba(255, 255, 255, 0.6);
display: grid;
place-items: center;
color: var(--muted);
padding: 0.6rem 0;
}
.ad-label {
font-size: 0.9rem;
letter-spacing: 0.08em;
text-transform: uppercase;
}
.ad-fallback {
background: var(--surface);
border-radius: 16px;
padding: 1.4rem 1.6rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 0.8rem;
max-width: 520px;
text-align: center;
}
.ad-fallback p {
margin: 0;
}
.support-cta {
background: var(--surface);
border-radius: 18px;
padding: 1.6rem 1.8rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
grid-template-columns: auto 1fr;
gap: 1.2rem;
align-items: center;
text-align: left;
}
.support-image {
width: 120px;
height: 120px;
border-radius: 14px;
object-fit: cover;
}
.support-copy {
display: grid;
grid-template-columns: 1fr auto;
gap: 1rem;
align-items: center;
}
.support-cta h3 {
margin: 0;
}
.cta-small {
padding: 0.6rem 1.2rem;
font-size: 0.95rem;
}
.test-card {
background: var(--surface);
border-radius: var(--radius);
padding: 2rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 1.5rem;
overflow: hidden;
position: relative;
isolation: isolate;
}
.test-card::before {
content: "";
position: absolute;
inset: 0;
background: radial-gradient(circle at top right, rgba(199, 169, 106, 0.15), transparent 55%);
z-index: -1;
}
.test-progress {
display: flex;
align-items: center;
gap: 1rem;
font-weight: 600;
color: var(--muted);
}
.test-bar {
flex: 1;
height: 8px;
border-radius: 999px;
background: var(--surface-alt);
overflow: hidden;
}
#testBarFill {
height: 100%;
width: 0;
background: var(--brand);
transition: width 0.25s ease;
}
.test-panel {
display: grid;
gap: 1.2rem;
}
.test-panel[hidden],
.test-loading[hidden],
.test-result[hidden] {
display: none !important;
}
.test-panel.reveal h2 {
animation: questionPop 0.5s ease;
}
.test-panel.reveal .test-option {
animation: optionFloat 0.45s ease forwards;
animation-delay: var(--delay, 0ms);
}
.test-panel h2 {
font-size: 1.6rem;
}
.test-options {
display: grid;
gap: 0.8rem;
}
.test-option {
width: 100%;
text-align: left;
padding: 0.9rem 1.1rem;
border-radius: 14px;
border: 1px solid var(--line);
background: #fcfbf8;
font: inherit;
font-weight: 600;
color: var(--ink);
cursor: pointer;
transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.test-option:hover,
.test-option:focus {
border-color: var(--brand);
box-shadow: 0 10px 20px rgba(199, 169, 106, 0.2);
transform: translateY(-2px);
}
.slide-out {
animation: slideOut 0.35s ease forwards;
}
.slide-in {
animation: slideIn 0.35s ease forwards;
}
@keyframes questionPop {
0% {
opacity: 0;
transform: translateY(8px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes optionFloat {
0% {
opacity: 0;
transform: translateY(10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes slideOut {
from {
opacity: 1;
transform: translateX(0);
}
to {
opacity: 0;
transform: translateX(-20px);
}
}
@keyframes slideIn {
from {
opacity: 0;
transform: translateX(20px);
}
to {
opacity: 1;
transform: translateX(0);
}
}
.test-form {
background: var(--surface);
border-radius: var(--radius);
padding: 2rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 1.6rem;
}
.test-question {
display: grid;
gap: 0.8rem;
}
.test-question label {
display: flex;
align-items: center;
gap: 0.6rem;
padding: 0.6rem 0.8rem;
border-radius: 12px;
border: 1px solid var(--line);
background: #fcfbf8;
}
.test-question input {
accent-color: var(--brand-dark);
}
.test-result {
background: var(--surface);
border-radius: var(--radius);
padding: 2rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 1rem;
}
.result-hero {
display: grid;
grid-template-columns: 120px 1fr;
gap: 1.2rem;
align-items: center;
}
.result-hero img {
width: 120px;
height: 120px;
border-radius: 16px;
object-fit: cover;
}
.result-actions {
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
}
.confetti {
position: fixed;
inset: 0;
pointer-events: none;
opacity: 0;
transition: opacity 0.2s ease;
z-index: 40;
}
.confetti.active {
opacity: 1;
}
.test-loading {
display: grid;
place-items: center;
gap: 0.8rem;
padding: 2.5rem 0 1rem;
color: var(--muted);
}
.spinner {
width: 44px;
height: 44px;
border-radius: 50%;
border: 3px solid rgba(199, 169, 106, 0.3);
border-top-color: var(--brand-dark);
animation: spin 0.9s linear infinite;
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
.article-hero {
width: 100%;
border-radius: 18px;
margin-bottom: 2rem;
max-height: 420px;
object-fit: cover;
box-shadow: var(--shadow);
}
.article-content img {
max-width: 100%;
height: auto;
border-radius: 14px;
margin: 1.5rem 0;
}
.article-content {
font-size: 1.05rem;
color: var(--muted);
}
.article-content p {
color: var(--muted);
}
.article-content::after {
content: "";
display: block;
clear: both;
}
.article-image.full {
width: 100%;
max-height: 380px;
object-fit: cover;
}
.article-image.inset {
width: 280px;
max-width: 45%;
object-fit: cover;
margin: 0.2rem 0 1rem;
}
.article-image.inset.right {
float: right;
margin-left: 1.5rem;
}
.article-image.inset.left {
float: left;
margin-right: 1.5rem;
}
.article-content h2,
.article-content h3,
.article-content h4 {
margin-top: 2rem;
}
.article-content a {
color: var(--brand-dark);
font-weight: 600;
}
.article-index ul {
list-style: none;
padding: 0;
margin: 0;
columns: 2;
column-gap: 2rem;
}
.article-index li {
break-inside: avoid;
padding: 0.4rem 0;
display: flex;
gap: 0.6rem;
align-items: flex-start;
}
.article-index a {
font-weight: 600;
color: var(--ink);
}
.article-section {
display: grid;
gap: 1.2rem;
}
.section-illustration {
width: 100%;
max-height: 220px;
object-fit: cover;
border-radius: 16px;
box-shadow: var(--shadow);
aspect-ratio: 16 / 9;
}
.article-section h2 {
margin-bottom: 0.6rem;
}
.article-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.7rem 1.6rem;
}
.article-list li {
break-inside: avoid;
padding: 0.4rem 0;
display: flex;
gap: 0.6rem;
align-items: center;
min-width: 0;
}
.article-list a {
font-weight: 600;
color: var(--ink);
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.article-list .new-badge {
margin-left: auto;
}
.topic-card .article-list {
grid-template-columns: 1fr;
}
.section-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 2rem;
align-items: center;
}
.section-head {
display: flex;
align-items: flex-end;
justify-content: space-between;
gap: 2rem;
margin-bottom: 2.5rem;
}
.topic-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.6rem;
}
.topic-card {
background: var(--surface);
border-radius: var(--radius);
padding: 1.7rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 1rem;
align-content: start;
overflow: hidden;
}
.topic-card ul {
list-style: none;
padding: 0;
margin: 1rem 0 0;
display: grid;
gap: 0.7rem;
}
.topic-card li {
display: flex;
gap: 0.6rem;
align-items: center;
min-width: 0;
}
.topic-card a {
font-weight: 600;
color: var(--ink);
flex: 1;
min-width: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.topic-card .section-illustration {
margin: 0;
height: 180px;
width: 100%;
max-height: 180px;
object-fit: cover;
display: block;
}
.topic-card h3 {
font-size: 1.2rem;
}
.new-badge {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0.2rem 0.6rem;
border-radius: 999px;
background: var(--brand);
color: #1f1a0f;
font-weight: 700;
font-size: 0.7rem;
text-transform: uppercase;
letter-spacing: 0.08em;
transform: rotate(-6deg);
white-space: nowrap;
margin-right: 0.4rem;
}
.cards {
display: grid;
gap: 1.5rem;
}
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
gap: 1.5rem;
}
.card {
background: var(--surface);
border-radius: var(--radius);
padding: 1.8rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
}
.card img {
width: 100%;
border-radius: 14px;
margin-bottom: 1rem;
object-fit: cover;
}
.card-links {
display: flex;
flex-wrap: wrap;
gap: 0.75rem 1rem;
margin-top: 0.6rem;
}
.card-link {
font-weight: 700;
color: var(--brand-dark);
display: inline-flex;
align-items: center;
gap: 0.4rem;
}
.card-link::after {
content: "→";
font-size: 0.9rem;
}
.tag {
display: inline-block;
padding: 0.2rem 0.6rem;
background: rgba(199, 169, 106, 0.2);
color: var(--brand-dark);
border-radius: 999px;
font-size: 0.75rem;
font-weight: 700;
margin-bottom: 0.8rem;
}
.contact {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2.5rem;
align-items: stretch;
}
.contact-footnote {
margin: 0.3rem 0 0;
font-size: 0.9rem;
color: var(--muted);
}
.contact-panel {
background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), #f6efe2 85%);
border-radius: calc(var(--radius) + 4px);
padding: 2.2rem;
border: 1px solid var(--line);
box-shadow: 0 24px 50px rgba(36, 49, 47, 0.12);
height: 100%;
}
.contact-details {
margin: 1.4rem 0 0;
display: grid;
gap: 0.6rem;
color: var(--muted);
}
.contact-details p {
margin: 0;
}
.contact-details strong {
color: var(--ink);
}
.contact-details a {
color: var(--brand-dark);
font-weight: 600;
}
.info-tooltip {
display: inline-flex;
align-items: center;
justify-content: center;
width: 18px;
height: 18px;
margin-left: 0.4rem;
border-radius: 50%;
background: #f1e5cf;
color: #6a4b2b;
font-size: 0.75rem;
font-weight: 700;
border: 1px solid var(--line);
cursor: help;
}
.contact-docs {
margin-top: 1.6rem;
padding-top: 1.4rem;
border-top: 1px dashed var(--line);
}
.contact-docs h3 {
margin-bottom: 0.8rem;
}
.doc-links {
display: grid;
gap: 0.6rem;
}
.doc-link {
display: inline-flex;
align-items: center;
gap: 0.5rem;
font-weight: 600;
color: var(--brand-dark);
}
.doc-link::after {
content: "→";
font-size: 0.9rem;
}
.form {
background: var(--surface);
border-radius: var(--radius);
padding: 2rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 1.1rem;
height: 100%;
}
.form label {
display: grid;
gap: 0.5rem;
font-weight: 600;
color: var(--ink);
}
.form input,
.form textarea {
padding: 0.7rem 0.9rem;
border-radius: 12px;
border: 1px solid var(--line);
font: inherit;
background: #fcfbf8;
}
.form-note {
font-size: 0.9rem;
color: var(--muted);
}
.people-grid {
display: grid;
grid-template-columns: repeat(3, minmax(220px, 280px));
gap: 1.5rem;
justify-content: center;
}
.person-card {
background: var(--surface);
border-radius: var(--radius);
padding: 1.2rem 1.4rem 1.4rem;
border: 1px solid var(--line);
box-shadow: var(--shadow);
display: grid;
gap: 0.4rem;
}
.person-card h4 {
font-size: 1.05rem;
line-height: 1.3;
word-break: break-word;
margin: 0.2rem 0 0;
min-height: 2.4rem;
}
.person-card img {
width: 100%;
border-radius: 14px;
object-fit: cover;
height: 220px;
display: block;
aspect-ratio: 4 / 5;
}
.person-photo-ludovit {
object-position: center 20%;
}
.person-card .role {
font-weight: 600;
color: var(--brand-dark);
margin: 0;
min-height: 2.2rem;
line-height: 1.3;
}
.person-card p {
margin: 0.4rem 0 0;
}
.person-card h4 {
min-height: 2.6rem;
}
.footer {
padding: 3rem 0 2.5rem;
border-top: 1px solid var(--line);
background: linear-gradient(180deg, #ffffff 0%, #f5f1e8 100%);
}
.footer-grid {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 2.5rem;
}
.footer-logo {
font-family: "Spectral", serif;
font-size: 1.6rem;
font-weight: 700;
letter-spacing: 0.04em;
}
.footer-brand-head {
display: flex;
align-items: center;
gap: 0.8rem;
}
.footer-mark {
width: 42px;
height: 42px;
object-fit: contain;
}
.footer-subtitle {
display: block;
font-size: 0.85rem;
letter-spacing: 0.08em;
text-transform: uppercase;
color: var(--muted);
}
.footer-brand p {
margin: 0.8rem 0 1.4rem;
}
.footer-actions {
display: flex;
gap: 0.8rem;
flex-wrap: wrap;
}
.footer-contact {
display: grid;
gap: 0.7rem;
align-content: start;
}
.footer-info {
display: grid;
gap: 0.8rem;
align-content: start;
}
.footer-list {
list-style: none;
padding: 0;
margin: 0;
display: grid;
gap: 0.4rem;
color: var(--muted);
}
.footer-list strong {
color: var(--ink);
font-weight: 600;
}
.footer-note {
margin: 0;
color: var(--muted);
}
.honeypot {
position: absolute;
left: -9999px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
}
.footer-docs a {
color: var(--ink);
font-weight: 600;
}
.footer-docs a:hover {
color: var(--brand-dark);
}
.footer-bottom {
display: flex;
justify-content: space-between;
align-items: center;
gap: 1rem;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid var(--line);
flex-wrap: wrap;
}
.footer-docs {
display: flex;
gap: 1.2rem;
flex-wrap: wrap;
}
.muted {
color: var(--muted);
}
@media (max-width: 900px) {
.header-grid {
grid-template-columns: 1fr;
justify-items: start;
}
.nav {
flex-wrap: wrap;
}
.section-head {
flex-direction: column;
align-items: flex-start;
}
.footer-grid {
grid-template-columns: 1fr;
}
.footer-bottom {
align-items: flex-start;
}
.people-grid {
grid-template-columns: repeat(2, minmax(200px, 1fr));
}
}
@media (max-width: 600px) {
.site-header {
position: static;
}
.test-page .site-header {
position: static;
}
.header-grid {
grid-template-columns: auto 1fr;
justify-items: start;
align-items: center;
text-align: left;
gap: 0.8rem;
}
.site-header {
padding-top: 0;
}
.logo {
flex-direction: row;
align-items: center;
gap: 0.6rem;
}
.logo-image {
width: 40px;
height: 40px;
}
.logo-text {
font-size: 0.78rem;
}
.nav {
justify-content: flex-end;
gap: 0.8rem;
}
.nav a {
font-size: 0.85rem;
}
.site-header .cta {
display: none;
}
.hero {
padding: 2.5rem 0 2rem;
}
.cta,
.ghost {
width: 100%;
}
.hero-actions {
flex-direction: column;
}
.hero-meta {
grid-template-columns: 1fr;
}
.donate-actions {
flex-direction: column;
}
.article-image.inset {
float: none;
width: 100%;
max-width: 100%;
margin: 1rem 0;
}
.article-index ul {
columns: 1;
}
.article-list {
grid-template-columns: 1fr;
}
.support-copy {
grid-template-columns: 1fr;
justify-items: start;
}
.result-hero {
grid-template-columns: 1fr;
text-align: left;
}
.result-hero img {
width: 100%;
height: 160px;
}
.test-page .hero-compact {
padding-top: 1rem;
}
.article-back {
left: 16px;
right: 16px;
bottom: 16px;
}
.cookie-banner {
left: 16px;
right: 16px;
bottom: 80px;
max-width: none;
}
#ludia {
display: none;
}
.people-grid {
grid-template-columns: 1fr;
}
}
.latest-card .topic-link,
.latest-card .topic-cta {
white-space: normal;
overflow: visible;
text-overflow: unset;
flex: initial;
}
.latest-card .topic-link {
font-weight: 700;
color: var(--ink);
}
.latest-card .topic-meta {
font-size: 0.85rem;
color: var(--muted);
}
.latest-card .topic-excerpt {
margin: 0;
color: var(--muted);
display: -webkit-box;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
}
.latest-card .topic-cta {
font-weight: 600;
color: var(--brand-dark);
}
.latest-card {
position: relative;
}
.latest-badge {
position: absolute;
top: 0.7rem;
right: -0.4rem;
transform: rotate(-6deg);
z-index: 2;
}
.section-actions {
display: flex;
align-items: center;
gap: 0.8rem;
flex-wrap: wrap;
}
.news-actions {
justify-content: center;
margin-top: 1.8rem;
}
.news-head {
align-items: center;
text-align: center;
flex-direction: column;
}
.news-head > div {
max-width: 640px;
}
.news-head h2 {
font-size: clamp(2.1rem, 2vw + 1.6rem, 2.8rem);
}
.news-head p {
font-size: 1.05rem;
color: var(--ink);
}
.news-head .section-actions {
justify-content: center;
}
.news-grid {
display: grid;
grid-template-columns: minmax(0, 3fr) minmax(0, 1fr);
gap: 1.6rem;
}
.news-articles {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 1.6rem;
}
.news-tests {
background: linear-gradient(160deg, #f8f3e6 0%, #ffffff 70%);
border-radius: var(--radius);
border: 1px solid var(--line);
box-shadow: var(--shadow);
padding: 1.5rem;
display: grid;
align-content: start;
gap: 1rem;
}
.news-tests-head {
display: grid;
gap: 0.6rem;
}
.news-tests-head h3 {
font-size: 1.1rem;
margin-bottom: 0;
}
.news-tests-image {
width: 100%;
height: 140px;
border-radius: 12px;
object-fit: cover;
}
.news-tests-list {
display: grid;
gap: 0.8rem;
}
.news-test-list {
list-style: none;
margin: 0;
padding: 0;
display: grid;
gap: 0.8rem;
}
.news-test-list li {
min-width: 0;
display: flex;
align-items: center;
gap: 0.6rem;
}
.news-test-item {
display: block;
font-weight: 600;
color: var(--ink);
line-height: 1.4;
flex: 1;
min-width: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.news-test-item:hover {
color: var(--brand-dark);
}
@media (max-width: 900px) {
.news-grid {
grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}
.news-articles {
grid-template-columns: 1fr;
}
}
@media (max-width: 700px) {
.news-grid {
grid-template-columns: 1fr;
}
.news-test-list {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.footer-info,
.footer-contact {
display: none;
}
}
