:root {
    /* Colors */
    --primary-color: #005f73;
    --secondary-color: #0a9396;
    --accent-color: #94d2bd;
    --text-dark: #222222;
    --text-light: #f1faee;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --white: #ffffff;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Poppins', sans-serif;

    /* Spacing System - Discourse-inspired */
    --spacing-xs: 1rem;
    /* 16px */
    --spacing-sm: 1.5rem;
    /* 24px */
    --spacing-md: 3rem;
    /* 48px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 6rem;
    /* 96px */

    /* Header */
    --header-height: 60px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Lock body scroll when mobile menu is open */
@media (max-width: 991px) {
    body:has(.menu-toggle-checkbox:checked) {
        overflow: hidden;
    }
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
    /* 24px yandan boşluk */
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-xs);
        /* Mobilde 16px */
    }
}

/* Header */
.site-header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid #e5e5e5;
    transition: box-shadow 0.2s ease;
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-title a {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.site-description {
    font-size: 12px;
    color: #666;
    margin-top: -5px;
}

/* Navigation */
.main-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Navigation - HIDDEN BY DEFAULT to prevent DOM flow issues */
.main-navigation {
    display: none;
}

/* Desktop - show navigation in header */
@media (min-width: 992px) {
    .main-navigation {
        display: block;
    }
}

.main-navigation>ul {
    display: flex;
    gap: 25px;
    align-items: center;
}

/* Menu Links */
.main-navigation a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 10px 0;
    display: block;
    font-size: 15px;
}

.main-navigation>ul>li>a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Disable clicking on ALL parent menu items (hover/touch only) */
.menu-item-has-children>a {
    cursor: default;
}

/* Desktop: pointer-events none for hover behavior */
@media (min-width: 992px) {
    .menu-item-has-children>a {
        pointer-events: none;
    }
}

/* But keep the submenu links clickable */
.menu-item-has-children .sub-menu a {
    pointer-events: auto;
    cursor: pointer;
}

.main-navigation a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu (Submenus) */
.main-navigation li {
    position: relative;
}

.main-navigation .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 240px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    display: none;
    /* HIDDEN by default - NO DOM SPACE! */
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
    padding: 10px 0;
    border-top: 3px solid var(--secondary-color);
}

/* DESKTOP: Hover to open submenus */
@media (min-width: 992px) {
    .main-navigation li:hover>.sub-menu {
        display: block;
        /* Show on hover */
        opacity: 1;
        transform: translateY(0);
        animation: fadeInDown 0.3s ease;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Submenu Links */
.main-navigation .sub-menu li {
    display: block;
}

.main-navigation .sub-menu a {
    padding: 8px 20px;
    font-size: 14px;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    transition: 0.2s;
}

.main-navigation .sub-menu a:hover {
    background: #f9f9f9;
    color: var(--primary-color);
    padding-left: 25px;
}

.main-navigation .sub-menu li:last-child a {
    border-bottom: none;
}

/* 3rd Level Menu (Opens to Right) */
.main-navigation .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-top: -10px;
}

/* Arrow Indicators */
.menu-item-has-children>a::after {
    content: '\f107';
    /* FontAwesome Down Arrow */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
    color: #999;
}

.sub-menu .menu-item-has-children>a::after {
    content: '\f105';
    /* Right Arrow */
    float: right;
}

.header-cta .btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--secondary-color);
}

/* === CSS Checkbox Hack for Mobile Menu === */
/* Hide checkbox */
.menu-toggle-checkbox {
    display: none;
}

/* Hamburger Label - Hidden on Desktop */
.menu-toggle-label {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    transition: 0.2s;
}

.hamburger-inner {
    top: 10px;
}

.hamburger-inner::before {
    content: '';
    top: -8px;
}

.hamburger-inner::after {
    content: '';
    top: 8px;
}

/* Hamburger Animation when checked */
.menu-toggle-checkbox:checked~.menu-toggle-label .hamburger-inner {
    background: transparent;
}

.menu-toggle-checkbox:checked~.menu-toggle-label .hamburger-inner::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle-checkbox:checked~.menu-toggle-label .hamburger-inner::after {
    transform: rotate(-45deg);
    top: 0;
}

/* Typography System */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 0;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.25rem;
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.3;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: 0.875rem;
}

h5 {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    margin-bottom: 0.75rem;
}

h6 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

/* Button System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: var(--font-primary);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 95, 115, 0.25);
}

.btn-secondary {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 147, 150, 0.25);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.btn-white {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.btn-white:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Pulse Animation for CTA Buttons */
.btn-pulse {
    position: relative;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0);
        transform: scale(1.05);
    }
}

/* Hero Section */
/* Hero Section */
.hero-section {
    position: relative;
    background: url('../images/ress.jpeg') no-repeat center center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 50, 32, 0.75), rgba(3, 8, 7, 0.70));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 var(--spacing-sm);
}

.hero-content h1 {
    color: white;
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Hero Background */
@media (max-width: 768px) {
    .hero-section {
        background: url('../images/ressmobil.jpg') no-repeat center center/cover;
    }

    /* Make outline button visible on mobile hero */
    .btn-outline {
        background: transparent;
        color: white;
        border-color: white;
    }

    .btn-outline:hover {
        background: white;
        color: var(--primary-color);
    }
}

/* Mobile Badge Strip - Professional Certification Display */
.mobile-badge-strip {
    display: none;
    background: linear-gradient(135deg, rgba(1, 70, 54, 0.95), rgba(0, 31, 23, 0.95));
    padding: 1.5rem 0;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .mobile-badge-strip {
        display: block;
    }
}

.badge-scroll-container {
    display: flex;
    gap: 1rem;
    padding: 0 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.badge-scroll-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar */
}

.mobile-badge-item {
    flex: 0 0 auto;
    width: 55px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0.5rem 0.4rem;
    text-align: center;
    scroll-snap-align: center;
}

.badge-icon {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.2rem;
}

.badge-title {
    font-size: 0.625rem;
    font-weight: 600;
    color: white;
    margin: 0 0 0.1rem 0;
}

.badge-subtitle {
    font-size: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}


/* Hero Shield & Badge System */
.hero-decoration {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-shield {
    position: relative;
    z-index: 2;
}

.shield-icon {
    width: 180px;
    height: 200px;
    filter: drop-shadow(0 10px 30px rgba(10, 147, 150, 0.4));
    animation: shield-pulse 3s ease-in-out infinite;
}

@keyframes shield-pulse {

    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(10, 147, 150, 0.4));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 15px 40px rgba(10, 147, 150, 0.6));
    }
}

.badge-orbit {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: orbit-rotation 30s linear infinite;
}

@keyframes orbit-rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.badge {
    position: absolute;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 3px solid #0a9396;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    animation: orbit-rotation 30s linear infinite reverse;
}

.badge span {
    font-size: 24px;
    font-weight: 700;
    color: #0a9396;
    margin-bottom: 2px;
}

.badge p {
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: #005f73;
    margin: 0;
}

.badge-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.badge-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.badge-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.badge-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

@media (max-width: 1200px) {
    .hero-decoration {
        width: 280px;
        height: 280px;
        top: 15%;
        right: 5%;
    }

    .shield-icon {
        width: 140px;
        height: 160px;
    }

    .badge {
        width: 70px;
        height: 70px;
    }

    .badge span {
        font-size: 18px;
    }

    .badge p {
        font-size: 8px;
    }
}

@media (max-width: 768px) {
    .hero-decoration {
        display: none;
    }
}

/* Mobile Badge Strip - Horizontal Scroll */
.mobile-badge-strip {
    display: none;
    background: linear-gradient(135deg, #0a9396 0%, #005f73 100%);
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

@media (max-width: 768px) {
    .mobile-badge-strip {
        display: block;
    }
}

.badge-scroll-container {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    /* Firefox */
    -webkit-overflow-scrolling: touch;
}

.badge-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

.mobile-badge-item {
    flex: 0 0 auto;
    width: 120px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: badge-float-mobile 3s ease-in-out infinite;
}

.mobile-badge-item:nth-child(2) {
    animation-delay: 0.5s;
}

.mobile-badge-item:nth-child(3) {
    animation-delay: 1s;
}

.mobile-badge-item:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes badge-float-mobile {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

.badge-icon {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.badge-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.badge-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.2;
}

/* Section Spacing System */
section {
    padding: var(--spacing-lg) 0;
}

section.hero-section {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

/* Background Colors - Discourse-inspired */
.bg-white {
    background: white;
}

.bg-light {
    background: var(--bg-light);
}

.bg-primary {
    background: var(--primary-color);
    color: white;
}

.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
    color: white;
}

/* Glass Card */
.glass-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    margin-bottom: var(--spacing-md);
}

.glass-card h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s;
    border-top: 4px solid var(--primary-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-box i {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Info Section - Special Background */
.section-info-block {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f4f8 50%, #dff3f7 100%);
    position: relative;
    overflow: hidden;
}

.section-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle, rgba(10, 147, 150, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.section-info-block .container {
    position: relative;
    z-index: 2;
}

.section-info-block .section-title h2 {
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background: #1a2e35;
    color: #d0d0d0;
    padding-top: 60px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.widget-title {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-info {
    background: #111f24;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Rules */
@media (max-width: 991px) {

    /* Show hamburger label on mobile */
    .menu-toggle-label {
        display: block;
        z-index: 10001;
        position: relative;
    }

    .main-navigation {
        display: block;
        /* Override default display:none */
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-height: 100vh;
        /* Changed from height to max-height */
        background: white;
        padding-top: calc(var(--header-height) + 1rem);
        padding-bottom: 2rem;
        /* Add bottom padding */
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9999;
        overflow-y: auto;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0);
    }

    /* Checkbox :checked -> menu opens */
    .menu-toggle-checkbox:checked~.main-navigation {
        right: 0;
        box-shadow: -2px 0 8px rgba(0, 0, 0, 0.15);
    }

    .main-navigation>ul {
        flex-direction: column;
        padding: 0;
        gap: 0;
        align-items: stretch;
    }

    .main-navigation ul li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .main-navigation a {
        padding: 1rem 1.5rem;
        font-size: 16px;
    }

    /* Mobile Submenus - JavaScript Toggle with .active class */
    .main-navigation .sub-menu {
        position: static;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        min-width: 100%;
        border-top: none;
        display: none;
        /* Hidden by default */
        padding-left: 0;
    }

    /* Show submenu when parent has .active class (JavaScript controlled) */
    .main-navigation li.active>.sub-menu {
        display: block;
        padding-left: 20px;
    }

    /* Arrow rotation on hover */
    .menu-item-has-children>a::after {
        float: right;
        transition: transform 0.3s;
    }

    .main-navigation li:hover>a::after {
        transform: rotate(180deg);
    }

    .header-cta {
        display: block;
        margin: 20px 25px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .glass-card {
        margin-top: 0;
    }
}

/* --- Blog Sayfası Tasarımı --- */
.blog-header-section {
    background-color: var(--light-color);
    padding: 60px 0 40px;
    text-align: center;
    margin-bottom: 40px;
}

.blog-header-section .page-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.blog-header-section .page-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--secondary-color);
}

.blog-card-header .entry-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card-header .entry-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-header .entry-title a:hover {
    color: var(--secondary-color);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    flex-grow: 1;
}

.blog-card-footer {
    margin-top: auto;
}

.read-more-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
    color: var(--primary-color);
}

.pagination {
    margin-top: 50px;
    text-align: center;
    width: 100%;
}

.pagination .nav-links .page-numbers {
    display: inline-block;
    padding: 10px 15px;
    margin: 0 5px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 5px;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination .nav-links .page-numbers.current,
.pagination .nav-links .page-numbers:hover {
    background: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}