/* /blog/assets/blog.css */

/* ==========================================
   CSS VARIABLES & BRAND TOKENS
   ========================================== */
:root {
    --egs-teal: #0FB6A8;
    --egs-teal-d: #0aa597;
    --bg: #f9fafb;
    --border: #e5e7eb;
    --card: #ffffff;
    --text: #111827;
    --text-muted: #6b7280;
    --shadow: 0 2px 10px rgba(0, 0, 0, .06);
    --radius: 12px;
    --transition: all 0.2s ease;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

/* ==========================================
   LAYOUT UTILITIES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

/* Responsive grid breakpoints */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   HEADER & HERO
   ========================================== */
.header.hero {
    background: linear-gradient(135deg, var(--egs-teal) 0%, var(--egs-teal-d) 100%);
    color: white;
    padding: 3rem 0 2.5rem;
    text-align: center;
}

.header.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.header.hero p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Alapértelmezés: EGS Türkiz (pl. cikkoldalon, fehér háttéren) */
.back-link {
    display: inline-block;
    color: var(--egs-teal);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
    transition: var(--transition);
}

/* Csak a hero fejléchez: maradjon fehér a színes háttéren */
.header.hero .back-link {
    color: white;
}



/* ==========================================
   CARD COMPONENT
   ========================================== */
.card {
    background: var(--card);
    border-radius: var(--radius);
    padding: 1.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.card h2 {
    font-size: 1.375rem;
    margin: 0.75rem 0 0.5rem;
    line-height: 1.4;
}

.card h2 a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.card h2 a:hover {
    color: var(--egs-teal);
}

.card .excerpt {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

/* ==========================================
   BADGE (Date pill)
   ========================================== */
.badge {
    display: inline-block;
    background: var(--bg);
    color: var(--text-muted);
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--border);
}

/* ==========================================
   BUTTON COMPONENT
   ========================================== */
.btn {
    display: inline-block;
    background: var(--egs-teal);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--egs-teal-d);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 182, 168, 0.3);
}

.btn:focus {
    outline: 3px solid rgba(15, 182, 168, 0.3);
    outline-offset: 2px;
}

/* ==========================================
   ARTICLE PAGE STYLES
   ========================================== */
.breadcrumbs {
    margin: 1.5rem 0;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.breadcrumbs a {
    color: var(--egs-teal);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.article {
    background: var(--card);
    border-radius: var(--radius);
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.article h1 {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text);
}

.article .meta {
    color: var(--text-muted);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.article p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.0625rem;
}

.article h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--text);
}

.article h3 {
    font-size: 1.375rem;
    margin: 2rem 0 1rem;
    color: var(--text);
}

.article ul,
.article ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
    line-height: 1.8;
}

.article li {
    margin-bottom: 0.75rem;
}

.article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 2rem 0;
    box-shadow: var(--shadow);
}

.article a {
    color: var(--egs-teal);
    text-decoration: none;
    transition: var(--transition);
}

.article a:hover {
    text-decoration: underline;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--card);
    border-top: 1px solid var(--border);
    padding: 2.5rem 0;
    margin-top: 4rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9375rem;
}

.footer p {
    margin: 0.5rem 0;
}

.footer a {
    color: var(--egs-teal);
    text-decoration: none;
    transition: var(--transition);
}

.footer a:hover {
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE ADJUSTMENTS
   ========================================== */
@media (max-width: 768px) {
    .header.hero h1 {
        font-size: 2rem;
    }

    .header.hero p {
        font-size: 1rem;
    }

    .article {
        padding: 2rem 1.5rem;
    }

    .article h1 {
        font-size: 1.875rem;
    }

    .article h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .card {
        padding: 1.5rem;
    }

    .article {
        padding: 1.5rem 1rem;
    }
}

/* ==========================================
   FOCUS STATES (Accessibility)
   ========================================== */
a:focus,
button:focus {
    outline: 3px solid rgba(15, 182, 168, 0.4);
    outline-offset: 2px;
}

/* Skip to content link for screen readers */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--egs-teal);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-to-content:focus {
    top: 0;
}