﻿:root { --bg: #f3f6fb; --card: #fff; --ink: #14213d; --muted: #60708b; --pink: #d81b60; --blue: #1a237e; }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: Georgia, 'Times New Roman', serif; background: radial-gradient(circle at top, #ffffff 0%, #eef3fb 45%, #e7edf8 100%); color: var(--ink); }
        .page { max-width: 1180px; margin: 0 auto; padding: 34px 20px 0; }
        .hero { padding: 34px 0 28px; }
        .eyebrow { color: var(--pink); font: 700 0.82rem/1.2 'Segoe UI', sans-serif; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 12px; }
        h1 { font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.02; color: var(--blue); }
        .lead { max-width: 720px; margin-top: 16px; font-size: 1.1rem; line-height: 1.75; color: var(--muted); }
        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; padding-bottom: 20px; }
        .card { background: rgba(255,255,255,0.82); backdrop-filter: blur(8px); border: 1px solid rgba(148, 163, 184, 0.2); border-radius: 24px; overflow: hidden; box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08); text-decoration: none; color: inherit; transition: transform .22s ease, box-shadow .22s ease; }
        .card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14); }
        .card img { width: 100%; aspect-ratio: 1.91 / 1; object-fit: cover; display: block; background: #dbe4f0; }
        .content { padding: 22px; }
        .meta { color: var(--muted); font: 600 0.84rem/1.2 'Segoe UI', sans-serif; margin-bottom: 10px; }
        .content h2 { color: var(--blue); font-size: 1.5rem; line-height: 1.15; margin-bottom: 12px; }
        .content p { color: #40506a; line-height: 1.7; }
        .empty { background: white; border-radius: 24px; padding: 42px; text-align: center; color: var(--muted); box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08); }
