/* ==========================================================================
   Turgay Şahin - AK Parti Afyonkarahisar İl Başkanı
   Ana Stil Dosyası
   ========================================================================== */

/* Kurumsal Renkler - Hex Formatı */
:root {
    --primary-blue: #1d2850;   /* AK Parti Kurumsal Lacivert */
    --accent-orange: #f58220;  /* AK Parti Kurumsal Turuncu */
    --white: #ffffff;
    --smoke: #f4f7f6;
    --dark-gray: #333333;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

html {
    overflow-x: hidden;
}

body { 
    font-family: 'Open Sans', sans-serif; 
    color: var(--dark-gray); 
    background-color: var(--white); 
    line-height: 1.7; 
    overflow-x: hidden;
    max-width: 100vw;
}

/* ==========================================================================
   TOP BAR (Pily Stil)
   ========================================================================== */
.top-bar {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 12px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.top-contact span { 
    margin-right: 25px; 
}

.top-social a { 
    color: var(--white); 
    margin-left: 15px; 
    text-decoration: none; 
    transition: var(--transition); 
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.top-social a:hover { 
    color: var(--accent-orange); 
}

.nsosyal-link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.nsosyal-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.nsosyal-link:hover .nsosyal-icon {
    filter: brightness(0) saturate(100%) invert(57%) sepia(89%) saturate(2077%) hue-rotate(348deg) brightness(98%) contrast(93%);
}

/* ==========================================================================
   NAVIGATION (Hakan Han Özcan Stil)
   ========================================================================== */
header {
    background-color: var(--white);
    padding: 20px 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.header-left {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.logo { 
    font-family: 'Montserrat', sans-serif; 
    font-size: 1.8rem; 
    font-weight: 900; 
    color: var(--primary-blue); 
    text-decoration: none; 
    letter-spacing: -1px;
    line-height: 1;
}

.logo span { 
    color: var(--accent-orange); 
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: #999;
    letter-spacing: 0.5px;
    margin: 0;
    text-align: center;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    margin: 0 40px;
}

nav ul { 
    display: flex; 
    list-style: none; 
    gap: 35px;
    align-items: center;
}

nav ul li a { 
    text-decoration: none; 
    color: var(--primary-blue); 
    font-weight: 700; 
    font-size: 0.85rem; 
    text-transform: uppercase; 
    transition: var(--transition);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover { 
    color: var(--accent-orange); 
}

/* ==========================================================================
   HERO SLIDER
   ========================================================================== */
.hero-slider { 
    width: 100%; 
    height: 65vh; 
}

.swiper-slide { 
    position: relative; 
    overflow: hidden; 
    display: flex; 
    align-items: center; 
}

.slide-img { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    filter: brightness(0.7); 
}

.slide-content {
    position: relative;
    z-index: 5;
    padding: 0 10%;
    color: var(--white);
    max-width: 1000px;
    transform: translateY(30px);
    opacity: 0;
    transition: 1s ease 0.5s;
}

.swiper-slide-active .slide-content { 
    transform: translateY(0); 
    opacity: 1; 
}

.slide-content h4 { 
    font-family: 'Montserrat'; 
    color: var(--accent-orange); 
    text-transform: uppercase; 
    letter-spacing: 4px; 
    margin-bottom: 20px; 
    font-weight: 800; 
}

.slide-content h1 { 
    font-family: 'Montserrat'; 
    font-size: 4.5rem; 
    line-height: 1; 
    margin-bottom: 30px; 
    font-weight: 900; 
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--white) !important;
    width: 60px !important;
    height: 60px !important;
    background: rgba(245, 130, 32, 0.9) !important;
    border-radius: 50% !important;
    transition: var(--transition) !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: 900 !important;
    color: var(--white) !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-blue) !important;
    transform: scale(1.1);
}

.swiper-button-disabled {
    opacity: 0.5 !important;
}

.swiper-pagination-bullet {
    background: var(--white);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: var(--accent-orange);
    opacity: 1;
    width: 30px;
    border-radius: 6px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn-action {
    padding: 18px 45px;
    background-color: var(--accent-orange);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 5px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 15px 30px rgba(245, 130, 32, 0.3);
}

.btn-action:hover { 
    background-color: var(--primary-blue); 
    transform: translateY(-5px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.1); 
}

.btn-action-sm {
    padding: 12px 25px;
    font-size: 0.75rem;
}

.btn-action-xs {
    padding: 10px 20px;
    font-size: 0.7rem;
}

/* ==========================================================================
   BENTO GRID NEWS (Modern Yapı)
   ========================================================================== */
.section-news { 
    padding: 120px 10%; 
    background-color: var(--smoke); 
}

.section-header { 
    text-align: center; 
    margin-bottom: 70px; 
}

.section-header h2 { 
    font-family: 'Montserrat'; 
    font-size: 2.8rem; 
    color: var(--primary-blue); 
    font-weight: 900; 
}

.section-header .divider { 
    width: 80px; 
    height: 6px; 
    background: var(--accent-orange); 
    margin: 20px auto; 
    border-radius: 3px; 
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.bento-item { 
    background: var(--white); 
    border-radius: 20px; 
    overflow: hidden; 
    position: relative; 
    box-shadow: 0 15px 50px rgba(0,0,0,0.08); 
    transition: var(--transition);
    height: 420px;
}

.bento-item > a {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    position: relative;
}

.bento-item:hover { 
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.bento-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: 0.6s; 
}

.bento-item:hover img { 
    transform: scale(1.08); 
}

.bento-large { 
    display: none;
}

.bento-overlay {
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    padding: 30px;
    background: linear-gradient(to top, rgba(29, 40, 80, 0.95) 0%, rgba(29, 40, 80, 0.85) 60%, transparent 100%);
    color: var(--white);
}

.bento-overlay h3 { 
    font-family: 'Montserrat'; 
    font-size: 1.3rem; 
    margin-top: 10px;
    line-height: 1.4;
}

.bento-overlay p {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-top: 8px;
}

.bento-overlay-sm {
    padding: 30px;
}

.bento-overlay-sm h3 {
    font-size: 1.3rem;
}

.news-tag {
    background: var(--accent-orange);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.news-link {
    color: var(--primary-blue);
    font-weight: 800;
    text-decoration: none;
    border-bottom: 2px solid var(--accent-orange);
}

/* ==========================================================================
   BAŞKAN MESAJI BÖLÜMÜ
   ========================================================================== */
.section-message {
    padding: 100px 10%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.message-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.message-image {
    flex-shrink: 0;
}

.message-image img {
    width: 320px;
    height: 320px;
    border-radius: 15px;
    object-fit: cover;
    border: 8px solid var(--white);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.message-content {
    flex: 1;
}

.message-label {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    display: block;
}

.message-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.2;
}

.message-quote {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 35px;
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--accent-orange);
}

.message-author {
    margin-top: 30px;
}

.message-author h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.message-author p {
    color: #777;
    font-size: 0.95rem;
}

/* ==========================================================================
   BİYOGRAFİ SAYFALARI
   ========================================================================== */

/* Bio Hero Section */
.bio-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3a6e 100%);
    padding: 120px 10%;
    text-align: center;
    color: var(--white);
}

.bio-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.bio-label {
    color: var(--accent-orange);
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: block;
}

.bio-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bio-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 600;
}

/* Bio Content Section */
.bio-content-section {
    padding: 100px 10%;
    background: var(--smoke);
}

.bio-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

/* Profile Card */
.bio-profile-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.bio-profile-image {
    margin-bottom: 30px;
}

.bio-profile-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.bio-quick-info h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-orange);
}

.bio-quick-info ul {
    list-style: none;
}

.bio-quick-info ul li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bio-quick-info ul li:last-child {
    border-bottom: none;
}

.bio-quick-info ul li i {
    color: var(--accent-orange);
    width: 25px;
    margin-right: 10px;
}

.bio-quick-info ul li strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Bio Text Content */
.bio-text-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.bio-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.bio-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bio-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bio-section h2 i {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

.bio-section p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.bio-section p:last-child {
    margin-bottom: 0;
}

.bio-section strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Highlight Section */
.bio-highlight {
    background: linear-gradient(135deg, #fef8f3 0%, #fff5ed 100%);
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid var(--accent-orange);
    border-bottom: none;
}

.bio-highlight h2 {
    color: var(--accent-orange);
}

/* Responsive Bio */
@media (max-width: 1100px) {
    .bio-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bio-profile-card {
        position: relative;
        top: 0;
    }
    
    .bio-hero h1 {
        font-size: 3rem;
    }
    
    .bio-text-content {
        padding: 35px;
    }
}

@media (max-width: 768px) {
    .bio-hero {
        padding: 80px 5%;
    }
    
    .bio-hero h1 {
        font-size: 2.5rem;
    }
    
    .bio-subtitle {
        font-size: 1.1rem;
    }
    
    .bio-content-section {
        padding: 60px 5%;
    }
    
    .bio-profile-card {
        padding: 30px;
    }
    
    .bio-text-content {
        padding: 25px;
    }
    
    .bio-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .bio-section p {
        font-size: 1rem;
        text-align: left;
    }
}

/* ==========================================================================
   İLETİŞİM SAYFASI
   ========================================================================== */

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9445 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 2rem;
}

.contact-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.8;
}

.contact-card a {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-blue);
}

.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-wrapper,
.contact-map {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2,
.contact-map h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-form-wrapper h2 i,
.contact-map h2 i {
    color: var(--accent-orange);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-orange);
}

.form-group textarea {
    resize: vertical;
}

.map-container {
    margin-top: 20px;
}

/* Responsive Contact */
@media (max-width: 1100px) {
    .contact-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-main-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper,
    .contact-map {
        padding: 30px;
    }
}

/* ==========================================================================
   HABERLER SAYFASI
   ========================================================================== */

.news-page-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-blue);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.news-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.news-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
}

.news-card-content {
    padding: 30px;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999;
}

.news-meta i {
    color: var(--accent-orange);
}

.news-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-card h3 a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: var(--transition);
}

.news-card h3 a:hover {
    color: var(--accent-orange);
}

.news-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.read-more {
    color: var(--accent-orange);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    gap: 12px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

/* Responsive News */
@media (max-width: 1400px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1100px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   HABER DETAY SAYFASI
   ========================================================================== */

/* Override bio-container for news detail page */
.single .bio-container {
    grid-template-columns: 350px 1fr;
}

.news-detail-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent-orange);
}

.recent-news {
    list-style: none;
}

.recent-news li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.recent-news li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-news a {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.recent-news img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.recent-news h4 {
    font-size: 0.95rem;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition);
}

.recent-news a:hover h4 {
    color: var(--accent-orange);
}

.recent-news span {
    font-size: 0.8rem;
    color: #999;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition);
}

.category-list a:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.category-list i {
    color: var(--accent-orange);
}

.category-list a:hover i {
    color: var(--white);
}

.category-list span {
    color: #999;
    font-size: 0.85rem;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.linkedin {
    background: #0077B5;
}

.share-btn:hover {
    transform: translateY(-5px);
}

.news-detail-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #000000;
}

.breadcrumb a {
    color: var(--accent-orange);
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

.news-category-badge {
    background: var(--accent-orange);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
}

.news-detail-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    color: var(--primary-blue);
    line-height: 1.3;
    margin-bottom: 20px;
}

.news-detail-meta {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #999;
}

.news-detail-meta i {
    color: var(--accent-orange);
}

.news-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.news-featured-image img {
    width: 100%;
    height: auto;
}

.news-detail-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.news-detail-body .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 30px;
    line-height: 1.7;
}

.news-detail-body h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: 40px 0 20px;
}

.news-detail-body ul,
.news-detail-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.news-detail-body li {
    margin-bottom: 15px;
    line-height: 1.8;
}

.news-detail-body blockquote {
    background: #f8f9fa;
    border-left: 5px solid var(--accent-orange);
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
}

.news-detail-body blockquote p {
    font-size: 1.15rem;
    font-style: italic;
    color: var(--primary-blue);
    margin: 0;
}

.news-detail-body blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #777;
    font-style: normal;
}

.news-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.news-image-grid img {
    width: 100%;
    border-radius: 15px;
}

.news-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #f0f0f0;
}

.news-tags strong {
    color: var(--primary-blue);
    margin-right: 15px;
}

.news-tags a {
    display: inline-block;
    padding: 8px 20px;
    background: #f8f9fa;
    border-radius: 50px;
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.85rem;
    margin-right: 10px;
    margin-top: 10px;
    transition: var(--transition);
}

.news-tags a:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.news-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 50px;
}

.prev-news,
.next-news {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    text-decoration: none;
    color: var(--primary-blue);
    transition: var(--transition);
}

.prev-news:hover,
.next-news:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.next-news {
    justify-content: flex-end;
    text-align: right;
}

.prev-news i,
.next-news i {
    font-size: 1.5rem;
}

.prev-news strong,
.next-news strong {
    display: block;
    font-size: 1.1rem;
    margin-top: 5px;
}

/* Responsive News Detail */
@media (max-width: 1100px) {
    .single .bio-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-detail-sidebar {
        position: relative;
        top: 0;
        order: 2;
    }
    
    .news-detail-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .single .bio-container {
        padding: 0 15px;
    }
    
    .news-detail-content {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .news-detail-header h1 {
        font-size: 1.6rem;
        word-wrap: break-word;
    }
    
    .news-featured-image img {
        width: 100%;
        height: auto;
    }
    
    .news-detail-body {
        overflow-x: hidden;
    }
    
    .news-detail-body img {
        max-width: 100%;
        height: auto;
    }
    
    .news-image-grid {
        grid-template-columns: 1fr;
    }
    
    .news-navigation {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .prev-news,
    .next-news {
        padding: 15px;
        gap: 10px;
    }
    
    .prev-news strong,
    .next-news strong {
        font-size: 0.9rem;
        word-wrap: break-word;
    }
    
    .news-detail-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
        word-wrap: break-word;
    }
    
    .breadcrumb span {
        margin: 0 5px;
    }
}

/* ==========================================================================
   AFYONKARAHİSAR SAYFASI
   ========================================================================== */

.afyon-intro-container {
    max-width: 1400px;
    margin: 0 auto 60px;
}

.afyon-intro-card {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    display: flex;
    gap: 40px;
    align-items: center;
}

.afyon-intro-icon {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9445 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: var(--white);
}

.afyon-intro-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 900;
}

.afyon-intro-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 15px;
}

.afyon-content-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.afyon-section-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.afyon-section-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.afyon-card-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3a6e 100%);
    color: var(--white);
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.afyon-card-header i {
    font-size: 2.5rem;
    color: var(--accent-orange);
}

.afyon-card-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    margin: 0;
}

.afyon-card-body {
    padding: 40px;
}

.afyon-card-body h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.afyon-card-body h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin: 25px 0 15px;
    font-weight: 700;
}

.afyon-card-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.afyon-card-body ul {
    list-style: none;
    padding: 0;
}

.afyon-card-body ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
    color: #555;
}

.afyon-card-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-orange);
}

.highlight-box {
    background: linear-gradient(135deg, #fef8f3 0%, #fff5ed 100%);
    border-left: 5px solid var(--accent-orange);
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.highlight-box i {
    font-size: 2rem;
    color: var(--accent-orange);
    flex-shrink: 0;
    margin-top: 5px;
}

.highlight-box p {
    margin: 0;
    color: #555;
}

/* Districts Section */
.districts-section {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 60px;
    border-top: 3px solid #f0f0f0;
}

.districts-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.district-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.district-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    background: var(--accent-orange);
}

.district-card:hover .district-icon {
    background: var(--white);
    color: var(--accent-orange);
}

.district-card:hover h3,
.district-card:hover p {
    color: var(--white);
}

.district-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
}

.district-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.district-card p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}

/* Responsive Afyon */
@media (max-width: 1100px) {
    .afyon-content-grid {
        grid-template-columns: 1fr;
    }
    
    .afyon-intro-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .afyon-intro-card {
        padding: 30px;
    }
    
    .afyon-intro-content h2 {
        font-size: 2rem;
    }
    
    .afyon-card-body {
        padding: 30px;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================================================
   İLÇE DETAY SAYFASI
   ========================================================================== */

.district-detail-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.district-info-list {
    list-style: none;
}

.district-info-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

.district-info-list li:last-child {
    border-bottom: none;
}

.district-info-list i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9445 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.district-info-list strong {
    display: block;
    color: var(--primary-blue);
    font-size: 0.85rem;
    margin-bottom: 3px;
}

.district-info-list span {
    color: #666;
    font-size: 1rem;
}

.other-districts {
    list-style: none;
}

.other-districts li {
    margin-bottom: 10px;
}

.other-districts a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 10px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 600;
    transition: var(--transition);
}

.other-districts a:hover {
    background: var(--accent-orange);
    color: var(--white);
}

.other-districts i {
    color: var(--accent-orange);
}

.other-districts a:hover i {
    color: var(--white);
}

.cta-widget {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3a6e 100%);
    color: var(--white);
}

.cta-widget h3 {
    color: var(--white);
}

.cta-widget h3::after {
    background: var(--accent-orange);
}

.cta-widget p {
    opacity: 0.9;
}

.district-detail-content {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.district-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 30px;
}

.district-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9445 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.district-header h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2.8rem;
    margin: 0;
    font-weight: 900;
}

.district-slogan {
    color: var(--accent-orange);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 8px 0 0 0;
}

.district-featured-image {
    margin: 30px 0 40px;
    border-radius: 20px;
    overflow: hidden;
}

.district-featured-image img {
    width: 100%;
    height: auto;
}

.district-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #555;
}

.district-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 2px solid #f0f0f0;
}

.district-section:last-child {
    border-bottom: none;
}

.district-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 800;
}

.district-section h2 i {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

.district-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin: 30px 0 20px;
    font-weight: 700;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid #f0f0f0;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.info-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--accent-orange);
}

.info-card h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.cta-box {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff9445 100%);
    color: var(--white);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    margin-top: 50px;
}

.cta-box h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 900;
}

.cta-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-box .btn-action {
    background: var(--white);
    color: var(--accent-orange);
}

.cta-box .btn-action:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* Responsive District Detail */
@media (max-width: 1100px) {
    .district-detail-sidebar {
        position: relative;
        top: 0;
        order: 2;
    }
    
    .district-detail-content {
        order: 1;
    }
}

@media (max-width: 768px) {
    .district-detail-content {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .district-header {
        flex-direction: column;
        text-align: center;
    }
    
    .district-header h1 {
        font-size: 1.6rem;
        word-wrap: break-word;
    }
    
    .district-featured-image img {
        width: 100%;
        height: auto;
    }
    
    .district-body {
        overflow-x: hidden;
    }
    
    .district-body img {
        max-width: 100%;
        height: auto;
    }
    
    .district-section {
        overflow-x: hidden;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 25px;
    }
    
    .cta-box h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   FOOTER (Kapsamlı Stil)
   ========================================================================== */
footer { 
    background-color: var(--primary-blue); 
    color: var(--white); 
    padding: 100px 10% 40px; 
}

.footer-main { 
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr; 
    gap: 60px; 
    padding-bottom: 60px; 
    border-bottom: 1px solid rgba(255,255,255,0.08); 
}

.footer-col h3 { 
    font-family: 'Montserrat'; 
    margin-bottom: 30px; 
    font-size: 1.2rem; 
    position: relative; 
    padding-bottom: 10px; 
}

.footer-col h3::after { 
    content: ''; 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    width: 40px; 
    height: 3px; 
    background: var(--accent-orange); 
}

.footer-col p { 
    opacity: 0.7; 
    font-size: 0.95rem; 
    margin-bottom: 20px; 
}

.footer-social {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-social h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid transparent;
}

.social-icons a:hover {
    background: var(--accent-orange);
    border-color: var(--white);
    transform: translateY(-5px);
}

.social-icons .nsosyal-link {
    width: 45px;
    height: 45px;
}

.social-icons .nsosyal-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.social-icons .nsosyal-link:hover .nsosyal-icon {
    filter: brightness(0) saturate(100%) invert(57%) sepia(89%) saturate(2077%) hue-rotate(348deg) brightness(98%) contrast(93%);
}

.footer-links { 
    list-style: none; 
}

.footer-links li { 
    margin-bottom: 15px; 
}

.footer-links a { 
    color: var(--white); 
    text-decoration: none; 
    opacity: 0.7; 
    transition: var(--transition); 
}

.footer-links a:hover { 
    opacity: 1; 
    color: var(--accent-orange); 
    padding-left: 10px; 
}

.footer-logo {
    color: var(--white);
    margin-bottom: 30px;
    display: block;
}

.footer-cta {
    margin-top: 30px;
}

.copyright { 
    text-align: center; 
    padding-top: 40px; 
    opacity: 0.4; 
    font-size: 0.85rem; 
}

.copyright a {
    color: inherit;
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1400px) {
    .bento-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    nav ul {
        gap: 25px;
    }
    
    nav ul li a {
        font-size: 0.8rem;
    }
}

@media (max-width: 1100px) {
    .bento-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    
    .bento-item {
        height: 350px;
    }
    
    .slide-content h1 { 
        font-size: 3rem; 
    }
    
    header {
        padding: 20px 5%;
    }
    
    nav {
        margin: 0 20px;
    }
    
    nav ul {
        gap: 20px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-subtitle {
        font-size: 0.65rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .top-bar {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    header {
        flex-direction: column;
        gap: 20px;
        padding: 15px 5%;
    }
    
    .header-left {
        text-align: center;
    }
    
    nav {
        width: 100%;
        justify-content: center;
        margin: 0;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    nav ul li a {
        font-size: 0.75rem;
    }
    
    .btn-action-sm {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .bento-grid { 
        grid-template-columns: 1fr; 
    }
    
    .bento-item {
        height: 320px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .section-news {
        padding: 60px 5%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .bento-overlay h3 {
        font-size: 1.1rem;
    }
    
    .message-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .message-image img {
        width: 220px;
        height: 220px;
    }
    
    .message-title {
        font-size: 2rem;
    }
    
    .message-quote {
        font-size: 1rem;
        padding-left: 20px;
    }
    
    .section-message {
        padding: 60px 5%;
    }
    
    footer {
        padding: 60px 5% 30px;
    }
}

/* ==========================================================================
   WORDPRESS SPECIFIC STYLES
   ========================================================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #2a3a6e 100%);
    padding: 80px 10%;
    text-align: center;
    color: var(--white);
}

.page-header-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 0.95rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: var(--black);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--accent-orange);
}

/* Container */
.section-page,
.container-page {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.container-page {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* 404 Page */
.section-404 {
    padding: 80px 10%;
}

.container-404 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.error-icon {
    font-size: 6rem;
    color: var(--accent-orange);
    margin-bottom: 30px;
}

.error-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.error-content p {
    font-size: 1.15rem;
    color: #666;
    margin-bottom: 40px;
}

.error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-action-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-action-outline:hover {
    background: var(--primary-blue);
    color: var(--white);
}

/* News Archive */
.section-news-archive {
    padding: 60px 10%;
}

.news-archive-container {
    max-width: 1400px;
    margin: 0 auto;
}

.no-posts {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: #999;
}

.no-posts i {
    font-size: 4rem;
    margin-bottom: 20px;
    display: block;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination .page-numbers {
    padding: 12px 20px;
    background: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: var(--transition);
    font-weight: 600;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--accent-orange);
    color: var(--white);
    border-color: var(--accent-orange);
}

/* WordPress Alignment Classes */
.alignleft {
    float: left;
    margin: 0 30px 20px 0;
}

.alignright {
    float: right;
    margin: 0 0 20px 30px;
}

.aligncenter {
    display: block;
    margin: 30px auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* WordPress Blocks */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-quote {
    border-left: 5px solid var(--accent-orange);
    padding-left: 30px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header-content h1 {
        font-size: 2rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .container-page {
        padding: 30px;
    }
}
