/* Modern Header Styles */
:root {
    --m-red: #81448e;
    --m-blue: #1e5d91;
    --m-dark: #222222;
}

header[role="banner"],
.headerV3,
.headerV3-top,
.headerV3-bottom,
.navigation-dropdown,
#header {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.header-modern {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    font-family: 'Poppins', sans-serif;
}

.header-modern.is-home {
    position: absolute;
}

.header-modern.is-page {
    position: relative;
}

.red-top-area {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
    transition: all 0.3s ease;
}

.header-modern.is-home .red-top-area {
    background-color: transparent;
    height: 100px;
    background-image: none !important;
}

.header-modern.is-page .red-top-area {
    background-color: #1f3675;
    background-image: linear-gradient(rgb(31 54 117 / 79%), rgb(31 54 117 / 84%)), url(/assets/images/Yalova-Merkezi.webp);
    background-size: cover;
    background-position: center;
    height: 200px;
}



.header-modern.is-home .red-top-area::before {
    opacity: 0;
}

.header-modern.is-page .red-top-area::before {
    opacity: 1;
}

.nav-floating-bar {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    height: 70px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    top: 60px;

}

.nav-section {
    display: flex;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.nav-section.left {
    justify-content: flex-start;
}

.nav-section.right {
    justify-content: flex-end;
}

.nav-item {
    position: relative;
    padding: 10px 0;
}

.nav-item>a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 8px 15px;
    border-radius: 20px;
    transition: 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item:hover>a {
    background-color: var(--m-red);
    color: #fff;
}

.nav-item .dropdown-box {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #10304A;
    border-radius: 0 0 15px 15px;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.nav-item:hover .dropdown-box {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-box a {
    padding: 12px 20px;
    color: #ddd;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-box a:last-child {
    border-bottom: none;
}

.dropdown-box a:hover {
    color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
}

.home-circle {
    background: var(--m-red);
    color: #fff !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.central-logo-holder {
    width: 110px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 20;
    padding: 5px;
    border: 4px solid var(--m-red);
}

.central-logo-holder img {
    width: 5rem;
    height: auto;
    object-fit: contain;
}

.header-breadcrumb-container {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: center;
    z-index: 6;
}

.header-breadcrumb-container h1 {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.breadcrumb-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-links li,
.breadcrumb-links li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 600;
}

.breadcrumb-links li a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-links li:not(:last-child)::after {
    content: "/";
    margin-left: 12px;
    opacity: 0.5;
    color: #fff;
}

.mobile-nav-bar {
    display: none;
}

@media (max-width: 991px) {
    .nav-floating-bar {
        display: none;
    }

    .header-modern.is-home .red-top-area {
        height: 0;
        visibility: hidden;
    }

    .header-modern.is-page .red-top-area {
        height: 60px;
    }

    .mobile-nav-bar {
        display: flex !important;
        height: 50px;
        background: #fff;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
        border-radius: 15px;
        margin: 20px 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border: none;
        position: relative;
        z-index: 1001;
    }

    .mobile-nav-bar img {
        height: 90px !important;
        max-height: none !important;
        width: auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        top: -15px;
        z-index: 10;
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
    }

    .ui-btn {
        background: none;
        border: none;
        font-size: 1.4rem;
        color: #1a1a1a;
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
        z-index: 5;
    }

    .header-breadcrumb-container {
        display: none;
    }
}

/* Mobile Drawer Styling */
.mobile-nav {
    background: #fff !important;
    font-family: 'Poppins', sans-serif;
}

.mobile-nav__header {
    background: var(--m-red) !important;
}

.mobile-nav__header-logo a {
    color: #fff !important;
    font-weight: 700 !important;
    text-transform: uppercase;
}

.js-mobilenav-link {
    padding: 15px 20px !important;
    border-bottom: 1px solid #f5f5f5 !important;
    color: #333 !important;
    font-weight: 600 !important;
}

.js-mobilenav-link .text {
    font-size: 0.9rem !important;
}

.mobile-nav__footer {
    background: #f9f9f9 !important;
    padding: 20px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 15px !important;
}

.mobile-nav__footer a {
    color: var(--m-red) !important;
    font-size: 1.2rem !important;
}

/* Slider Styles */
.main-slider {
    position: relative;
    width: 100%;
    height: 550px;
    margin-top: 0;
    overflow: hidden;
    z-index: 1;
}

@media (max-width: 991px) {
    .main-slider {
        height: 400px;
        margin-top: 0;
    }

    .content-box h2 {
        font-size: 1.8rem !important;
        margin-bottom: 10px;
    }

    .content-box p {
        font-size: 0.9rem !important;
        margin-bottom: 15px;
    }

    .btn-more {
        padding: 8px 20px !important;
        font-size: 0.8rem;
    }

    .slide-inner {
        padding-top: 80px !important;
        height: 35vh !important;
    }
}

.slide-inner {
    width: 100%;
    height: 35vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 180px;
}

.slide-inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(15 48 74 / 49%) 0%, rgb(15 48 74 / 48%) 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.content-box {
    max-width: 600px;
    animation: fadeInUp 1s ease;
}

.content-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.content-box p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.5;
}

.btn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--m-red);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-more:hover {
    background: #81448e;
    /* var(--m-red) */
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.main-slider .swiper-button-next:after,
.main-slider .swiper-button-prev:after {
    font-size: 1.5rem;
}

.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    background: #fff;
    color: #81448e;
    border-color: #fff;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Haberler Styles */
.haber-baslik {
    font-size: 28px !important;
    font-weight: 700 !important;
}

:root {
    --news-primary: #83448e;
    --news-red: #e3342f;
    --news-accent: #83448e;
    --sidebar-bg: #ffffff;
    --card-radius: 20px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-modern-section {
    overflow: hidden;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .news-modern-header .btn-all-modern {
        display: none !important;
    }
}

.news-modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.section-script-title {
    font-family: 'GlossAndBloom', sans-serif;
    font-size: 42px;
    color: var(--news-primary);
    line-height: 1;
    margin: 0;
}

.title-accent {
    width: 50px;
    height: 5px;
    background: var(--news-accent);
    margin-top: 8px;
    border-radius: 3px;
}

.btn-all-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    padding: 6px 6px 6px 18px;
    border-radius: 100px;
    color: #1e293b;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.btn-all-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    color: var(--news-primary);
}

.btn-all-modern .icon-circle {
    width: 32px;
    height: 32px;
    background: var(--news-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.news-modern-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.1fr 1.1fr;
    gap: 20px;
    align-items: stretch;
}

.news-modern-main {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.main-news-card {
    display: block;
    position: relative;
    border-radius: var(--card-radius);
    overflow: hidden;
    flex: 1;
    min-height: 400px;
    text-decoration: none !important;
    background: #000;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.main-news-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.main-news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.main-news-card:hover .main-news-media img {
    transform: scale(1.08);
}

.main-news-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 80%);
}

.main-news-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 2;
}

.badge-glass {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.main-news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: #fff;
}

.main-news-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.main-news-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.main-news-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.slider-bottom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.slider-arrows {
    display: flex;
    gap: 10px;
}

.arrow-btn {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1e293b;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.arrow-btn:hover {
    background: var(--news-primary);
    color: #fff;
}

.slider-pagination-custom {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pagination-item {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: transparent;
    border: none;
    color: #94a3b8;
    font-weight: 800;
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-item.active {
    background: var(--news-primary);
    color: #fff;
}

.premium-side-column {
    display: flex;
    flex-direction: column;
}

.premium-side-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.side-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-shrink: 0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--news-red);
}

.header-left h4 {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
}

.side-view-all {
    font-size: 12px;
    font-weight: 700;
    color: #e3342f;
    /* var(--news-red) */
    text-decoration: none;
    background: #b628291f;
    padding: 5px 10px;
    border-radius: 8px;
    transition: var(--transition);
}

.side-view-all:hover {
    background: var(--news-accent);
    color: #fff;
}

.side-scroll-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.side-news-item {
    display: flex;
    gap: 12px;
    text-decoration: none !important;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 5px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.side-news-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--news-accent);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
    border-radius: 12px;
}

.side-news-item:hover::before {
    width: 100%;
}

.side-news-item:hover .side-news-title,
.side-news-item:hover .side-news-date {
    color: #fff !important;
    transition: color 0.2s ease;
}

.side-news-thumb {
    width: 80px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.side-news-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.side-news-info {
    flex: 1;
}

.side-news-title {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 5px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.side-news-date {
    font-size: 11px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.side-ann-item {
    display: flex;
    gap: 12px;
    text-decoration: none !important;
    align-items: center;
    padding: 10px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: var(--transition);
}

.side-ann-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--news-primary);
}

.ann-icon-box {
    width: 36px;
    height: 36px;
    background: #fff;
    color: var(--news-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.04);
    flex-shrink: 0;
}

.side-ann-info {
    flex: 1;
}

.side-ann-title {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    margin: 0 0 3px;
    line-height: 1.3;
}

.side-ann-date {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}

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

    .news-modern-main {
        grid-column: span 2;
    }
}

@media (max-width: 992px) {
    .premium-side-column:not(:has(.ann-card-v2)) {
        display: none !important;
    }

    .news-modern-grid {
        grid-template-columns: 1fr;
    }

    .news-modern-main {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .news-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .news-modern-main {
        grid-column: span 1;
    }

    .main-news-card {
        min-height: 350px;
        border-radius: 25px;
    }

    .main-news-content {
        padding: 25px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 100%);
    }

    .main-news-title {
        font-size: 20px;
        letter-spacing: -0.5px;
    }

    .section-script-title {
        font-size: 32px;
    }

    .news-modern-header {
        margin-bottom: 10px;
        flex-direction: row;
        margin-top: 25px;
        align-items: center;
    }

    .haber-baslik {
        font-size: 22px !important;
        font-weight: 900;
    }

    .btn-all-modern {
        padding: 6px 6px 6px 16px;
        font-size: 13px;
    }

    .premium-side-column {
        margin-top: 10px;
    }

    .premium-side-card {
        border: none;
        background: none;
        padding: 10px;
        border-radius: 25px;
        box-shadow: none;
    }

    .side-news-item {
        background: #fff;
        padding: 12px;
        margin-bottom: 5px;
        border-radius: 18px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }

    .side-news-thumb {
        width: 70px;
        height: 70px;
        border-radius: 14px;
    }

    .side-news-title {
        font-size: 14px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .side-ann-item {
        background: #83448e17;
        padding: 15px;
        border-radius: 18px;
        border: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        margin-bottom: 10px;
    }

    .ann-icon-box {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        background: rgba(28, 107, 181, 0.08);
        box-shadow: none;
    }

    .side-scroll-list {
        max-height: 500px;
        overflow-y: auto;
        padding-right: 5px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .side-scroll-list::-webkit-scrollbar {
        display: none;
    }

    .slider-arrows .btn-all-modern {
        background: #fff;
        padding: 0 20px;
        height: 44px;
        border-radius: 22px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        color: var(--news-accent);
        border: 1px solid #e2e8f0;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
}

@media (max-width: 480px) {
    .news-modern-section {
        padding: 50px 0;
    }

    .main-news-card {
        min-height: 300px;
    }

    .main-news-title {
        font-size: 18px;
    }

    .main-news-excerpt {
        display: none;
    }

    .slider-bottom-controls {
        flex-direction: column-reverse;
        gap: 15px;
        align-items: center;
    }

    .slider-pagination-custom {
        width: 100%;
        overflow-x: auto;
        justify-content: start;
        padding: 8px;
    }
}

/* Archive Page Haberler Styles */
.archive-news-container {
    padding: 20px 0 60px;
}

.archive-main-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    text-decoration: none !important;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.archive-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.main-card-img {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    min-height: 350px;
}

.main-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.archive-main-card:hover .main-card-img img {
    transform: scale(1.05);
}

.card-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--news-red);
    color: #fff;
    padding: 6px 15px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 800;
    z-index: 2;
}

.main-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-date {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.card-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-excerpt {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 25px;
}

.read-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--news-primary);
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
}

.archive-news-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    text-decoration: none !important;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.archive-news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(28, 107, 181, 0.1);
}

.card-img {
    height: 220px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.archive-news-card:hover .card-img img {
    transform: scale(1.08);
}

.card-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.archive-news-card .card-title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.archive-news-card .card-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer-action {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.archive-news-card:hover .card-footer-action {
    color: var(--news-primary);
}

.pagination-modern-wrapper {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

@media (max-width: 992px) {
    .archive-main-card {
        flex-direction: column;
    }

    .main-card-img {
        min-height: 250px;
    }

    .main-card-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .card-title {
        font-size: 20px;
    }
}

/* Gezilecek Yerler (Projects) Styles */
.projects-modern-section {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.projects-modern-section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.section-header-modern {
    margin-bottom: 10px;
    color: #1e293b;
    position: relative;
    z-index: 2;
}

.section-header-modern .section-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header-modern .section-subtitle {
    font-size: 16px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    color: #017db0;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background: #48b8ac;
    color: #fff;
}

.filter-btn:not(.active):hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.projects-carousel-modern {
    position: relative;
    z-index: 2;
}

.project-card-modern {
    background: #fff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    margin: 10px 5px;
}

.project-card-modern:hover {
    transform: translateY(-10px);
    border-color: #017db0;
    box-shadow: 0 20px 40px rgba(1, 125, 176, 0.1);
}

.project-image-wrapper {
    height: 180px;
    overflow: hidden;
    padding: 10px;
}

.project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.8s ease;
}

.project-card-modern:hover .project-img {
    transform: scale(1.1);
}

.project-content-modern {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    text-transform: uppercase;
    line-height: 1.4;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 58px;
}

.project-location-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.location-text {
    font-size: 11px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
}

.location-icon {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #017db0;
    font-size: 14px;
}

.projects-footer-action {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.action-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #1e293b;
}

.btn-all-projects {
    border: 1.5px solid #017db0;
    padding: 12px 35px;
    border-radius: 10px;
    color: #017db0;
    font-weight: 800;
    font-size: 13px;
    text-decoration: none !important;
    transition: all 0.3s;
}

.btn-all-projects:hover {
    background: #017db0;
    color: #fff;
}

.nav-arrow-btn {
    background: transparent;
    border: none;
    font-size: 24px;
    opacity: 0.7;
    cursor: pointer;
    transition: 0.3s;
    color: #017db0;
}

.nav-arrow-btn:hover {
    opacity: 1;
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .projects-modern-section {
        padding: 60px 0;
    }

    .project-filters {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 12px;
        font-size: 12px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .section-header-modern .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
}

/* Detail Page Styles */
.detail-img {
    width: 45%;
    height: auto;
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-text-container {
    font-size: 15px;
    line-height: 1.6;
    color: #334155;
}

.detail-video-article {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.detail-video-wrapper {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.detail-video-inner {
    width: 100%;
}

.detail-video-iframe-box {
    padding: 1rem;
}

@media (max-width: 768px) {
    .detail-img {
        width: 100%;
        float: none;
        margin-right: 0;
    }

    .detail-video-wrapper {
        width: 100%;
    }
}

/* Institutions Section */
.institutions-modern-section {
    padding: 40px 0;
    position: relative;
    margin-bottom: 40px;
}

.institutions-carousel-modern {
    margin-top: 10px;
    padding: 15px 0;
}

.institution-card-modern {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px 5px;
}

.institution-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: #017db0;
}

.institution-logo-wrapper {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.institution-logo {
    max-height: 120px;
    max-width: 165px;
    object-fit: contain;
    opacity: 0.7;
}

.institution-card-modern:hover .institution-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.institution-name {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 42px;
}

.discount-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    display: inline-block;
}

@media (max-width: 768px) {
    .institutions-modern-section {
        padding: 50px 0;
    }
}

/* Institutions Page Styles */
.institutions-page {
    padding: 20px 0;
}

.institutions-page .institution-card-modern {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.institutions-page .institution-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
}

.institutions-page .section-title {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 800;
}

.institutions-page .institution-logo {
    filter: none;
    opacity: 1;
}

@media (max-width: 576px) {
    .institutions-page .institution-card-modern {
        padding: 20px 15px;
    }
}