/* Root Variables - Colors from Figma */
:root {
    --color-1: #c43535;
    --color-2: #703636;
    --color-3: #f2f2f2;
    --color-4: #454545;
    --beyaz: #ffffff;
    --dbdee3: #dbdee3;
    --e8e3dd: #e8e3dd;
}

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

body {
    font-family: 'Noto Sans';
    color: var(--color-4);
    background-color: var(--beyaz);
    overflow-x: hidden;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--beyaz, #ffffff);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-loader-logo {
    width: 157px;
    height: 157px;
    position: relative;
    animation: loaderPulse 2s ease-in-out infinite;
}

.page-loader-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@keyframes loaderPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    color: var(--color-1, #C8102E);
}

p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    font-style: normal;
    line-height: 1.62;
    color: #3f3f3f;
    margin: 0 0 20px 0
}

/* Mobilde container yatay padding'i 0 */
@media (max-width: 767.98px) {
}

/* Header Styles */
.main-header {
    background-color: var(--beyaz);
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 0;
    min-height: 126px;
}

.header-content {
    position: relative;
    min-height: 90px;
}

/* Logo Styles */
.logo-wrapper {
    width: 80px;
    position: relative;
}

.logo-circle {
    width: 157px;
    height: 157px;
    position: absolute;
    top: 0;
    left: 0;
}

.logo-image {
    height: 90px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-line-1 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-4);
    white-space: nowrap;
}

.logo-line-2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: #4e4e4e;
    white-space: nowrap;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.main-nav .nav-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1.35px;
    color: var(--color-4);
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.main-nav .nav-link:hover {
    color: var(--color-1);
}

/* Navigation top and bottom lines - always visible */
.main-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--color-4);
}

.main-nav .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--color-4);
}

.main-nav .nav-link::before {
    top: -2px;
}

.main-nav .nav-link::after {
    bottom: -2px;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link-dropdown i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link-dropdown i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--beyaz);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--dbdee3);
    border-top: 2px solid var(--color-1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
}

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

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: var(--color-4);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-dropdown-item:hover {
    background-color: var(--color-3);
    color: var(--color-1);
    padding-left: 2rem;
}

/* Search Icon */
.search-icon {
    background: transparent;
    border: none;
    color: var(--color-4);
    font-size: 18px;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.search-icon:hover {
    color: var(--color-1);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-modal {
    background-color: var(--beyaz);
    border-radius: 8px;
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: translateY(-50px);
    transition: transform 0.3s ease;
}

.search-overlay.active .search-modal {
    transform: translateY(0);
}

.close-search {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--color-4);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-search:hover {
    color: var(--color-1);
}

.search-content h3 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--color-4);
    margin-bottom: 2rem;
}

.search-form {
    width: 100%;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-4);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--color-1);
}

.search-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    color: var(--color-4);
    outline: none;
}

.search-input::placeholder {
    color: #999;
}

.search-submit-btn {
    background-color: var(--color-2);
    border: none;
    color: var(--beyaz);
    padding: 1rem 1.5rem;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.search-submit-btn:hover {
    background-color: var(--color-1);
}

/* Language Selector */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-link {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 16px;
    color: var(--color-4);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.4rem 0.6rem;
}

.lang-link:hover {
    color: var(--color-1);
}

.lang-link.active {
    color: var(--color-4);
    border: 1px solid var(--color-4);
    padding: 0.4rem 0.6rem;
}

/* Hamburger Menu */
.hamburger-menu {
    background: transparent;
    border: 1px solid #9d9d9d;
    width: 54px;
    height: 53px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    border-color: var(--color-4);
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 1px;
    background-color: var(--color-4);
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: var(--color-1);
}

/* Side Menu Overlay */
.side-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.side-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--beyaz);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.side-menu.active {
    right: 0;
}

.side-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.side-menu-header h3 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: var(--color-4);
    margin: 0;
}

.close-menu {
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--color-4);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.close-menu:hover {
    color: var(--color-1);
}

.side-menu-content {
    padding: 2rem;
}

.side-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.side-menu-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--color-4);
    text-decoration: none;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.side-menu-link:hover {
    color: var(--color-1);
    padding-left: 1rem;
}

/* Side Menu Dropdown Styles */
.side-menu-dropdown {
    position: relative;
}

.side-menu-link-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-menu-link-dropdown i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.side-menu-dropdown.active .side-menu-link-dropdown i {
    transform: rotate(180deg);
}

.side-menu-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--color-3);
}

.side-menu-dropdown.active .side-menu-dropdown-menu {
    max-height: 1000px;
}

.side-menu-dropdown-item {
    display: block;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: var(--color-4);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.side-menu-dropdown-item:hover {
    color: var(--color-1);
    background-color: rgba(196, 53, 53, 0.05);
    padding-left: 2rem;
}

/* Hero Slider Styles - From Figma */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 790px;
    background-color: var(--beyaz);
    overflow: visible;
}

/* Hero Background - bottom-[9.53%] top-[-0.44%] bg-[#f3f2ed] */
.hero-bg {
    position: absolute;
    bottom: 9.53%;
    top: -0.44%;
    left: 0;
    right: -5.56%;
    background-color: #f3f2ed;
    overflow: hidden;
}

.hero-carousel {
    width: 100%;
    height: 100%;
}

.hero-carousel .owl-stage-outer,
.hero-carousel .owl-stage,
.hero-carousel .owl-item {
    height: 100%;
}

.hero-carousel .owl-nav,
.hero-carousel .owl-dots {
    display: none;
}

.hero-slide {
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide img {
    position: absolute;
    left: -0.99%;
    right: 4.71%;
    top: 50%;
    transform: translateY(-50%);
    margin-top: -45px;
    width: auto;
    height: auto;
    max-width: none;
    aspect-ratio: 2560/1428;
    object-fit: cover;
    mix-blend-mode: multiply;
}

/* Bottom Lines - From Figma bottom-[38px] */
.hero-line-bottom {
    position: absolute;
    bottom: 38px;
    height: 1px;
    background-color: var(--color-4);
    z-index: 10;
}

.hero-line-left {
    left: 18px;
    right: calc(50% + 150px);
}

.hero-line-right {
    left: calc(50% + 150px);
    right: 17px;
}

/* Navigation Container - Combined arrows and dots */
.hero-navigation {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 33px;
    z-index: 20;
}

/* Custom Arrow Navigation - From Figma */
.hero-arrows {
    display: flex;
    align-items: center;
    gap: 33px;
}

.hero-arrow {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-arrow img {
    width: 100%;
    height: 100%;
    display: block;
}

/* Fix arrow directions - prev should point left, next should point right */
.hero-arrow-prev img {
    transform: rotate(-90deg);
}

.hero-arrow-next img {
    transform: rotate(90deg);
}

/* Custom Dots Navigation - From Figma bottom-[26.28px] */
.hero-dots-custom {
    display: flex;
    gap: 33px;
    align-items: center;
}

.hero-dot {
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-dot img {
    width: 100%;
    height: 100%;
    display: block;
}

/* White Background Boxes for Text - From Figma */
.hero-text-bg {
    position: absolute;
    z-index: 5;
    pointer-events: none;
}

.hero-text-bg::before {
    content: '';
    position: absolute;
    bottom: 195px;
    left: calc(50% - 534px);
    width: 192px;
    height: 184px;
    background-color: var(--beyaz);
}

.hero-text-bg::after {
    content: '';
    position: absolute;
    bottom: 195px;
    left: calc(50% - 383px);
    width: 494px;
    height: 87px;
    background-color: var(--beyaz);
}

/* Hero Text Content - From Figma bottom-[211px] left-[calc(50%-601px)] */
.hero-content-text {
    position: absolute;
    bottom: 211px;
    left: calc(50% - 601px);
    width: auto;
    max-width: none;
    z-index: 10;
}

.hero-subtitle {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    letter-spacing: 0.24px;
    line-height: 1.2;
    color: var(--color-4) #454545;
    margin: 0;
    width: fit-content;
    background: #fff;
    padding: 10px 20px;
    margin-bottom: -2px;
}

.hero-title {
    font-family: 'Noto Sans';
    font-weight: 700;
    font-size: 50px;
    color: var(--color-4);
    margin: 0;
    display: inline-block;
    width: max-content;
}

.hero-title-1 {
    background: #fff;
    padding: 10px 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    display: block;
    width: max-content;
    box-sizing: border-box;
    padding-right: 60px;
}
.hero-title-2 {
    background: #fff;
    padding: 10px 20px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    display: block;
    width: max-content;
    box-sizing: border-box;
    margin-top: -2px;
    padding-right: 60px;
    box-shadow: 0 3px 0 0 rgba(0, 0, 0, 0.5);
}
/* Hero Badge - From Figma right positioned, top-[125px] bg-[#703636] */
.hero-badge-box {
    position: absolute;
    right: 0;
    top: 0;
    width: 220px;
    height: 170px;
    background-color: #703636;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    overflow: hidden;
    z-index: 10;
}

.badge-stamp {
    position: absolute;
    left: 67px;
    top: 20px;
    width: 257px;
    height: 255px;
    mix-blend-mode: overlay;
    opacity: 0.57;
    object-fit: cover;
    pointer-events: none;
}

.badge-date {
    position: absolute;
    left: 40px;
    top: 30px;
    margin: 0;
    z-index: 1;
    color: var(--beyaz, #FFF);
    font-family: "Noto Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    width: 100px;
    border-bottom: 2px solid #E6E6D9;
    padding-bottom: 8px;
    line-height: 30px;
}

.badge-text {
    position: absolute;
    left: 45px;
    top: 130px;
    right: 51.34px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: var(--beyaz);
    margin: 0;
    z-index: 1;
}

.badge-text u {
    text-decoration: underline;
    text-underline-position: from-font;
}

/* Responsive Styles */
@media (max-width: 1920px) {
    .hero-slider {
        overflow: hidden;
    }
    
    .hero-badge-box {
        right: 0;
    }
    
    .hero-line-left {
        right: calc(54% + 100px);
    }
    
    .hero-line-right {
        left: calc(54% + 100px);
    }
}

@media (max-width: 991px) {
    .logo-line-1,
    .logo-line-2 {
        font-size: 14px;
    }
    
    .main-nav {
        display: none !important;
    }
    
    .header-right {
        gap: 0.3rem !important;
    }
}

@media (max-width: 768px) {
    .logo-wrapper {
        width: 51px;
        height: 60px;
    }
    
    .logo-circle {
        width: 100px;
        height: 100px;
    }
    
    .logo-image {
        height: 61px;
    }
    
    .logo-line-1,
    .logo-line-2 {
        font-size: 12px;
    }
    
    .hero-slide {
        height: 640px;
    }
    
    .hero-content {
        width: 90%;
        bottom: 100px;
        left: 5%;
        margin-left: 0;
        transform: none;
    }

    .hero-content-text {
        bottom: 40px;
        left: 20px;
    }
    
    .hero-text {
        width: 100%;
    }

    .hero-title-2, .hero-title-1 {
        font-size: 35px;
        padding: 6px 20px;
        padding-right: 45px;
    }

    .hero-slider {
        height: 705px;
    }

    .hero-badge {
        position: relative;
        right: auto;
        bottom: auto;
        width: 90%;
        margin: 2rem auto 0;
        left: 5%;
        margin-right: 0;
    }
    
    .hamburger-menu {
        width: 40px;
        height: 45px;
    }
    .lang-link.active {
        padding: 0.3rem 0.5rem;
    }
    .lang-link {
        font-size: 12px;
    }
    .header-content {
        min-height: 60px;
    }
    .main-header {
        min-height: 93px;
    }
    .hero-badge-box {
        width: 124px;
        height: 115px;
    }
    .badge-date {
        left: 17%;
        top: 17%;
        font-size: 15px;
        width: 87px;
        line-height: 20px;
    }
    .badge-stamp {
        left: 0;
        top: 0;
    }
    .hero-navigation {
        bottom: 10px;
    }
    .hero-arrows {
        gap: 9px;
    }
    .hero-dots-custom {
        gap: 12px;
    }
    .hero-line-bottom {
        bottom: 21px;
    }
    .hero-line-left {
        right: calc(53% + 100px) !important;
    }
    .hero-line-right {
        left: calc(53% + 100px) !important;
    }
    .hero-line-left {
        left: 0;
    }
    .hero-line-right {
        right: 0;
    }
    .publications-sidebar-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* Footer Section */
.footer-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #e8e3dd 0%, var(--beyaz, #ffffff) 100%);
    padding: 100px 0 100px;
}

.footer-section .container {
    position: relative;
}

/* Site Haritası Başlığı */
.footer-title-box {
    width: 207px;
    height: 45px;
    background-color: var(--beyaz, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.footer-title {
    font-family: 'Noto Sans';
    font-weight: 700;
    font-size: 26px;
    line-height: 1.2;
    color: var(--color-4, #454545);
    margin: 0;
}

/* Footer Content */
.footer-content {
    margin-top: 35px;
}

.footer-column {
    position: relative;
    padding-left: 30px;
    padding-right: 15px;
}

.footer-column::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 5px;
    width: 1px;
    height: 100%;
    background-color: #4545457d;
}

/* Sol taraftaki gri çizgiler - before ile (sadece desktop'ta) */
@media (min-width: 992px) {
}

/* Mobil ve tablet'te padding düzenle */
@media (max-width: 991.98px) {
    .footer-column {
        padding-left: 30px;
        padding-right: 15px;
        margin-bottom: 40px !important;
    }
}

.footer-heading {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.65;
    color: var(--color-4, #454545);
    margin: 0 0 5px 0;
}

.footer-list {
    list-style: disc;
    margin: 0 0 5px 0;
    padding-left: 1.5em;
}

.footer-list li {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-4, #454545);
    margin: 0 0 0 0;
}

.footer-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.65;
    color: var(--color-4, #454545);
    margin: 0;
}


/* Responsive Footer */
@media (max-width: 991.98px) {
    .footer-section {
        padding: 60px 0 40px;
    }
    
    .footer-title-box {
        margin-bottom: 0;
    }
    
    .footer-content {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .footer-section {
        padding: 40px 0 30px;
    }
    
    .footer-title {
        font-size: 22px;
    }
    
    .footer-heading {
        font-size: 16px;
        font-weight: lighter;
    }

    .footer-text {
        font-weight: lighter;
    }

    .footer-list {
        display: none;
    }
    
    .footer-list li {
        font-size: 14px;
    }
    
}

/* Modules Section */
.modules-section {
    width: 100%;
    margin: 0;
    padding: 25px 0;
}

.modules-row {
    margin: 0;
}

.modules-row > div:not(:first-child) {
    padding-left: 15px;
}

.modules-row > div:not(:last-child) {
    padding-right: 15px;
}

@media (max-width: 991.98px) {
    .modules-row > div:not(:last-child){
        padding-right: 0;
    }
    .modules-row > div:not(:first-child){
        padding-left: 0;
    }
    .modules-row > div {
        margin-bottom: 15px;
    }
}

.module-card {
    position: relative;
    width: 100%;
    height: 432px;
    overflow: hidden;
}

.module-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.module-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.87;
}

.module-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    mix-blend-mode: multiply;
}

.module-red {
    background-color: #e5cfcf;
}

.module-red .module-overlay {
    background: linear-gradient(to bottom, #5a3737 0%, #c07676 50%);
}

.module-blue {
    background-color: #bccce9;
}

.module-blue .module-overlay {
    background: linear-gradient(to bottom, #656262 0.962%, #c2c2c2 45.673%);
}

.module-green {
    background-color: #48624d;
}

.module-green .module-overlay {
    background: linear-gradient(to bottom, #375a55 0%, #6aa49d 50%);
}

.module-content {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 3;
    color: var(--beyaz, #ffffff);
}

.module-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0 0 10px 0;
    border-bottom: 2px solid var(--Color-7, #e6e6d996);
    padding-bottom: 11px;
}

.module-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.module-title-link:hover {
    text-decoration: none;
    color: inherit;
}

.module-line {
    margin-top: 10px;
}

.module-line img {
    width: auto;
    height: 2px;
}

/* Tanıtım Filmi - Play Button */
.play-button-container {
    position: absolute;
    left: 47px;
    top: 220px;
    z-index: 4;
}

.play-button-circle {
    position: relative;
    width: 86px;
    height: 86px;
}

.play-icon {
    position: absolute;
    width: 100%;
    height: 100%;
}

.play-arrow {
    position: absolute;
    top: 31%;
    left: 31%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 30px;
    transform: rotate(90deg);
    filter: brightness(0) invert(1);
}

/* Diplomasi Tüneli - Calendar */
.calendar-container {
    position: absolute;
    left: 35.6px;
    top: 80px;
    width: 244px;
    z-index: 4;
}

.calendar-date {
    font-family: 'Noto Sans';
    font-weight: 700;
    font-size: 21px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin-bottom: 10px;
}

.calendar-arrows {
    display: flex;
    gap: 16px;
    margin-bottom: 10px;
}

.calendar-arrow {
    width: 10px;
    height: 10px;
    cursor: pointer;
}

.calendar-text {
    margin-top: 10px;
}

.calendar-year {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
    color: var(--beyaz, #ffffff);
    margin: 0;
}

.calendar-year u {
    text-decoration: underline;
    text-underline-position: from-font;
}

/* Mini Calendar Grid */
.mini-calendar {
    margin-bottom: 10px;
}

.mini-calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    width: 100%;
}

.mini-calendar-day {
    background: transparent;
    border: none;
    color: var(--beyaz, #ffffff);
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
    padding: 4px;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    position: relative;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-calendar-day.empty {
    visibility: hidden;
    cursor: default;
}

.mini-calendar-day:hover:not(.empty) {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.mini-calendar-day.has-event {
    background: rgba(204, 229, 225, 0.3);
    border-radius: 2px;
}

.mini-calendar-day.selected {
    background: rgba(229, 207, 207, 0.6);
    border-radius: 2px;
    font-weight: 600;
}

.mini-calendar-day.selected.has-event {
    background: rgba(229, 207, 207, 0.8);
}

/* Duyurular Module */
.module-gray {
    background-color: var(--color-3, #F3F2ED);
}

.module-content-gray {
    padding: 30px 48px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.module-header-gray {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
    gap: 15px;
    width: fit-content;
    border-bottom: 2px solid var(--Color-4, #454545);
    padding-bottom: 11px;
}

.module-title-gray {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 1.2;
    color: var(--color-4, #454545);
    margin: 0;
}

.module-arrows-gray {
    display: flex;
    gap: 0px;
}

.module-arrows-gray button {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.module-arrow-gray {
    width: 27px;
    height: 17px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

button.announcement-prev img {
    transform: rotate(270deg);
}

button.announcement-next img {
    transform: rotate(90deg);
}

.module-arrows-gray button:hover .module-arrow-gray {
    opacity: 0.7;
}

.module-line-gray {
    margin-bottom: 20px;
}

.module-line-gray img {
    width: 232px;
    height: 2px;
}

/* Announcements Carousel */
.announcements-carousel {
    margin-top: 0;
}

.announcements-carousel .owl-stage-outer,
.announcements-carousel .owl-stage,
.announcements-carousel .owl-item {
    height: auto;
}

.announcement-item {
    min-height: 200px;
}

.announcement-content {
    flex: 1;
    min-height: 200px;
}

.announcement-date {
    font-family: 'Noto Sans';
    font-weight: 700;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-4, #454545);
    margin-bottom: 5px;
}

.announcement-text, .announcement-content p {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: var(--color-4, #454545);
    margin: 0;
    white-space: pre-wrap;
}

/* Responsive Modules */
@media (max-width: 991.98px) {
    .module-card {
        height: 350px;
    }
    
    .module-title,
    .module-title-gray {
        font-size: 24px;
    }
    
    .play-button-container {
        left: 30px;
        top: 180px;
    }
    
    .play-button-circle {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 767.98px) {
    .module-card {
        height: 300px;
    }
    
    .module-content {
        top: 20px;
        left: 20px;
    }
    
    .module-title,
    .module-title-gray {
        font-size: 28px;
    }
    
    .module-content-gray {
        padding: 20px 30px;
    }
    
    .play-button-container {
        left: 20px;
        top: 150px;
    }
    
    .play-button-circle {
        width: 60px;
        height: 60px;
    }
    
    .calendar-container {
        left: 20px;
        top: 150px;
        width: calc(100% - 40px);
    }
    
    .calendar-events-wrapper {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .calendar-date {
        font-size: 18px;
    }
    
    .calendar-year {
        font-size: 13px;
    }
    
    .module-card {
        height: auto !important;
        min-height: 500px;
    }
    
    .module-content {
        position: relative;
        padding-bottom: 20px;
    }
    
    .calendar-events-wrapper {
        padding-bottom: 20px;
        padding-right: 50px;
    }
    
    .mini-calendar-calendar-wrapper {
        margin-bottom: 20px;
    }
}

/* Content List Section */
.content-list-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.content-list-card {
    position: relative;
    width: 100%;
    height: 360px;
    border-top: 2px solid #9f9f9f;
    background: radial-gradient(ellipse 750px 850px at 0px 10.5px, rgba(238,237,233,1) 0%, rgba(255,255,255,1) 100%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.content-list-body {
    position: relative;
    z-index: 2;
    padding: 28px 35px 0;
    flex-shrink: 0;
}

.content-list-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: #454545;
    margin: 0;
    width: 197px;
}

.content-list-title a {
    color: #454545;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.content-list-title a:hover {
    opacity: 0.8;
}

.content-list-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.content-list-image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 245px;
}

@media (max-width: 991.98px) {
    .content-list-card {
        /* height: 250px; */
    }
    
    .content-list-title {
        font-size: 20px;
        width: 100%;
    }
    
    .content-list-body {
        padding: 20px 25px;
    }
}

@media (max-width: 767.98px) {
    .content-list-card {
        /* height: 220px; */
    }
    
    .content-list-title {
        font-size: 23px;
    }
    
    .content-list-body {
        padding: 15px 20px;
    }
}

/* Publications Section */
.publications-section {
    padding: 60px 0;
    background-color: #dbdee3;
}

.publications-header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 17px;
    position: relative;
}

.publications-title-wrapper {
    position: relative;
}

.publications-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    color: var(--color-4, #454545);
    margin: 0 0 10px 0;
    border-bottom: 1px solid #454545;
    padding-bottom: 15px;
}

.publications-title-line {
    margin-top: 5px;
}

.publications-title-line img {
    width: 153.788px;
    height: 2px;
}


.publication-nav-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.publication-nav-btn:hover {
    opacity: 0.7;
}

.publication-nav-btn img {
    width: 26px;
    height: 75px;
    display: block;
}

.publication-nav-next img, .publication-nav-prev img {
    width: 75px;
    height: 26px;
    display: block;
}

.publication-nav-next img {
    transform: rotate(90deg);
}

.publication-nav-prev img {
    transform: rotate(270deg);
}

.publications-carousel {
    margin-bottom: 10px;
    position: relative;
}

/* Carousel row için relative positioning - col-12 içinde carousel varsa */
.publications-section .row > .col-12 {
    position: relative;
}

.publications-nav-wrapper {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
    width: 100%;
}

.publication-nav-prev {
    position: absolute;
    left: -60px;
    pointer-events: all;
}

.publication-nav-next {
    position: absolute;
    right: -60px;
    pointer-events: all;
}

.publication-item {
    text-align: center;
    padding: 0 10px;
}

.publication-cover {
    width: 100%;
    background-color: var(--beyaz, #ffffff);
    overflow: hidden;
    box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.36);
    position: relative;
}

.publication-cover img {
    width: 100%;
    /* height: 100%; */
    /* object-fit: cover; */
    object-position: center;
    mix-blend-mode: luminosity;
    opacity: 0.8;
}

.publication-cover:hover img {
    mix-blend-mode: unset;
}

.publication-item:hover .publication-cover {
    transform: translateY(-3px);
    box-shadow: 0px 6px 0px 0px rgba(0, 0, 0, 0.36);
}

.view-all-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.view-all-line {
    flex: 1;
    max-width: 551.469px;
    height: 1px;
}

.view-all-line img {
    width: 100%;
    height: 2px;
    display: block;
}

.view-all-publications {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: var(--color-4, #454545);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.view-all-publications:hover {
    color: var(--color-1, #C8102E);
}

/* Responsive Publications */
@media (max-width: 991.98px) {
    .publications-section {
        padding: 40px 0;
    }
    
    .publications-title {
        font-size: 28px;
    }
    
    .publication-nav-prev {
        left: -30px;
    }
    
    .publication-nav-next {
        right: -30px;
    }
    
    .publication-nav-btn img {
        width: 22px;
        height: 65px;
    }
}

@media (max-width: 767.98px) {
    .publications-section {
        padding: 30px 0;
    }
    
    .publications-header-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .publications-title {
        font-size: 24px;
        margin-left: 17%;
    }
    
    .publication-nav-prev {
        left: -25%;
    }
    
    .publication-nav-next {
        right: -25%;
    }
    
    .publication-nav-btn img {
        width: 75px;
        height: 35px;
    }
    
    .view-all-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .view-all-line {
        max-width: 100%;
    }
}

/* Bottom Cards Section */
.bottom-cards-section {
    padding: 60px 0;
    background-color: var(--beyaz, #ffffff);
}

.bottom-card {
    width: 100%;
    height: 297px;
    border-top: 2px solid #9f9f9f;
    background: radial-gradient(ellipse at top left, rgba(238, 237, 233, 1) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
}

.bottom-card-title {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--color-4, #454545);
    margin: 0;
    position: absolute;
    top: 30px;
    left: 35px;
    width: 197px;
    z-index: 2;
}

.bottom-card-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 1;
}

.bottom-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.bottom-card-images {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.bottom-card-img-1 {
    width: 197px;
    height: auto;
    object-fit: cover;
    display: block;
}

.bottom-card-img-2 {
    width: 193px;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Responsive Bottom Cards */
@media (max-width: 991.98px) {
    .bottom-cards-section {
        padding: 40px 0;
    }
    
    .bottom-card {
        height: 280px;
        margin-bottom: 20px;
    }
    
    .bottom-card-title {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .bottom-cards-section {
        padding: 30px 0;
    }
    
    .bottom-card {
        height: 250px;
        padding: 20px 25px;
    }
    
    .bottom-card-title {
        font-size: 20px;
        top: 20px;
        left: 25px;
        width: auto;
    }
    
    .bottom-card-img-1,
    .bottom-card-img-2 {
        width: auto;
        max-width: 45%;
    }
}

/* Publications Hero Section */
.publications-hero-section {
    position: relative;
    height: 528px;
    overflow: hidden;
    background-color: #e6e6d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.publications-hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 103px;
}

.publications-hero-content {
    position: relative;
}

.publications-hero-title {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0 0 20px 0;
    letter-spacing: 0.6px;
}

.publications-hero-line {
    width: 273px;
    height: 1px;
}

.publications-hero-line img {
    width: 100%;
    height: 2px;
    display: block;
}

.publications-badge-box {
    position: absolute;
    right: -115px;
    top: 125px;
    width: 342px;
    height: 167px;
    background-color: #703636;
    box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
    padding: 30px 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.publications-badge-stamp {
    position: absolute;
    left: 67px;
    top: 20px;
    width: 257px;
    height: 255px;
    mix-blend-mode: overlay;
    opacity: 0.57;
    object-fit: cover;
}

.publications-badge-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0;
    position: relative;
    z-index: 2;
}

.publications-badge-line {
    position: absolute;
    left: 41px;
    top: 126px;
    width: 105px;
    height: 1px;
    z-index: 2;
}

.publications-badge-line img {
    width: 100%;
    height: 2px;
    display: block;
}

/* Responsive Publications Hero */
@media (max-width: 991.98px) {
    .publications-hero-section {
        height: 400px;
    }
    
    .publications-hero-title {
        font-size: 48px;
    }
    
    .publications-hero-section .container {
        padding-bottom: 60px;
    }
    
    .publications-badge-box {
        right: -80px;
        width: 280px;
        height: 140px;
        padding: 20px 30px;
    }
    
    .publications-badge-stamp {
        width: 200px;
        height: 200px;
        left: 50px;
    }
}

@media (max-width: 767.98px) {
    .content-list-link {
        font-size: 18px;
        padding: 15px 0;
    }
    
    .content-list-icon {
        width: 20px;
        height: 20px;
    }
    
    .btn-back-to-list {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .publications-hero-section {
        height: 300px;
    }

    .publications-hero-title {
        font-size: 36px;
    }

    .publications-hero-line {
        width: 200px;
    }
    
    .publications-hero-section .container {
        padding-bottom: 40px;
    }
    
    .publications-badge-box {
        display: none;
    }
}

/* Publications Section */
.publications-section {
    padding: 60px 0;
    background-color: #dbdee3;
}

.publications-section-detail {
    padding: 22px 0;
}

/* Publications Sidebar */
.publications-sidebar {
    padding: 61px 50px 5px 0;
    width: 100%;
    background: #DBDEE3;
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.sidebar-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 5px 10px 5px 10px;
    padding-right: 0;
    margin-bottom: 0;
}

.sidebar-title {
    margin: 0;
    color: #3A3A3A;
    font-family: "Noto Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
}

.sidebar-title-line {
    border-bottom: 1px solid var(--Color-4, #454545);
    padding: 13px 0;
    position: relative;
    padding-left: 30px;
}

.sidebar-title-line.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 20px;
    height: 20px;
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.sidebar-title-line-bottom {
    border-bottom: 1px solid var(--Color-4, #454545);
    padding-bottom: 13px;
    position: relative; /* ::before için gerekli */
    padding-left: 0; /* Ok için yer açmak için */
}



.sidebar-title-line-bottom.active::before {
    content: '';
    position: absolute;
    left: -8%;
    top: 14%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(90deg);
}

.sidebar-line {
    height: 1px;
    width: 100%;
}

.sidebar-line img {
    width: 100%;
    height: 2px;
    display: block;
}

.sidebar-menu {
    padding-left: 30px;
    padding-top: 0;
    padding-right: 0;
    padding-bottom: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
}

.sidebar-menu.active {
    max-height: 1000px;
    padding-top: 10px;
    padding-bottom: 10px;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-list li {
    margin-bottom: 0;
    padding: 4px 10px 10px 10px;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-menu-list li a {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 20px;
    line-height: 1.35;
    color: #3a3a3a;
    text-decoration: none;
    display: block;
    padding-top: 4px;
    padding-bottom: 0;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--Color-4, #454545);
    padding-bottom: 8px;
}

.sidebar-menu-line {
    height: 1px;
    width: 100%;
}

.sidebar-menu-line img {
    width: 100%;
    height: 2px;
    display: block;
}

.sidebar-menu-list li a:hover {
    color: var(--color-1, #C8102E);
}

.publications-sidebar-wrapper {
    max-width: 70%;
    width: 70%;
    border-top: 2px solid var(--Color-4, #454545);
}

/* Content List Styles */
.content-list-wrapper {
    margin-top: 30px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list-item {
    margin-bottom: 0;
    border-bottom: 1px solid #ddd;
}

.content-list-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 0;
    text-decoration: none;
    color: #3a3a3a;
    font-family: 'Noto Sans', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.35;
    transition: all 0.3s ease;
}

.content-list-link:hover {
    color: var(--color-1, #C8102E);
    padding-left: 10px;
}

.content-list-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-1, #C8102E);
}

.content-list-text {
    flex: 1;
}

/* Back to List Button */
.content-detail-header {
    margin-bottom: 20px;
}

.btn-back-to-list {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid var(--Color-4, #454545);
    color: #3a3a3a;
    font-family: 'Noto Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-back-to-list:hover {
    background-color: var(--color-1, #C8102E);
    border-color: var(--color-1, #C8102E);
    color: #fff;
}

.btn-back-to-list svg {
    width: 20px;
    height: 20px;
}

/* Publications Content (Right Side) */
.publications-content {
    padding: 75px 50px 24px;
    position: relative;
    background-color: #f3f2ed;
    height: 100%;
}

.publication-item-right {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 15px;
    padding-bottom: 15px;
    position: relative; /* ::after için gerekli */
}

.publication-item-right:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35%;
    height: 2px;
    background-color: var(--Color-4, #454545);
    opacity: 0.5;
}

.publication-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

h2.publications-content-title {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--Color-4, #454545);
}



.publication-cover-right {
    width: 285px;
    height: 312px;
    background-color: #ffffff;
    box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.36);
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.publication-cover-right-two {
    width: 285px;
    height: 385px;
}

.publication-cover-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* object-position: center; */
    /* mix-blend-mode: luminosity; */
    /* opacity: 0.8; */
}

li.breadcrumb-item a, li.breadcrumb-item {
    color: #ffffff91;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: #ffffff91;
}

li.breadcrumb-item a:hover {
    color: #fff;
}

nav.page-breadcrumb {
    padding-top: 10px;
}

.publication-title-right {
    font-family: 'Noto Sans';
    font-weight: 600;
    font-size: 20px;
    line-height: 1.35;
    color: #000000;
    margin: 0;
    max-width: 70%;
}

.publication-description-right {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.62;
    color: #000000;
    margin: 0;
    max-width: 500px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    line-clamp: 10;
    -webkit-box-orient: vertical;
}

.publication-divider {
    width: 400px;
    height: 1px;
    margin: 24px 0;
    margin-left: 0;
}

.publication-divider img {
    width: 100%;
    height: 2px;
    display: block;
}

/* Sanal Sergi Hero Section */
.sanal-sergi-hero-section {
    position: relative;
    height: 528px;
    overflow: hidden;
    background-color: #e6e6d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sanal-sergi-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgb(255 255 255 / 0%) 8.26%, rgb(81 105 105 / 82%) 65.43%);
    background-blend-mode: multiply;
    z-index: 1;
}

/* Diplomasi Tüneli Hero Section */
.diplomasi-tuneli-hero-section {
    position: relative;
    height: 528px;
    overflow: hidden;
    background-color: #e6e6d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.diplomasi-tuneli-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgb(255 255 255 / 0%) 8.26%, rgb(81 105 105 / 82%) 65.43%);
    background-blend-mode: multiply;
    z-index: 1;
}

.diplomasi-tuneli-hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 103px;
}

.diplomasi-tuneli-hero-content {
    position: relative;
}

.diplomasi-tuneli-hero-title {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0 0 20px 0;
    letter-spacing: 0.6px;
}

.diplomasi-tuneli-hero-line {
    width: 273px;
    height: 3px;
    position: relative;
}

.diplomasi-tuneli-hero-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(230, 230, 217, 0.6);
}

/* Diplomasi Tüneli Content Section */
.diplomasi-tuneli-section {
    padding: 22px 0;
    background-color: #ffffff;
}

.diplomasi-tuneli-sidebar {
    padding: 61px 50px 5px 0;
    width: 100%;
    background: #DBDEE3;
    height: 100%;
    gap: 20px;
    display: flex;
    justify-content: flex-end;
}

.diplomasi-tuneli-search-input-wrapper {
    padding: 0 10px;
    margin-bottom: 20px;
}

.diplomasi-tuneli-sidebar-wrapper {
    max-width: 70%;
    width: 70%;
}

.diplomasi-tuneli-search-input {
    width: 100%;
    height: 49px;
    background-color: #ffffff;
    border: none;
    padding: 0 17px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #000000;
    outline: none;
}

.diplomasi-tuneli-search-input::placeholder {
    color: #000000;
}

.diplomasi-tuneli-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 10px;
}

.diplomasi-tuneli-category-tag {
    display: inline-block;
    padding: 4px 6px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.5);
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: #000000;
    text-decoration: none;
    transition: opacity 0.3s;
}

.diplomasi-tuneli-category-tag:hover {
    opacity: 0.7;
}

.diplomasi-tuneli-content {
    padding: 40px 0;
    background-color: #f3f2ed;
}

.diplomasi-tuneli-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
}

.diplomasi-tuneli-timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 37px;
    width: 2px;
    height: calc(100% + 13px);
    background-color: #454545;
}

.diplomasi-tuneli-timeline-icon {
    width: 19px;
    height: 37px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.diplomasi-tuneli-timeline-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.diplomasi-tuneli-timeline-content {
    flex: 1;
}

.diplomasi-tuneli-timeline-date {
    font-family: 'Noto Sans';
    font-weight: 600;
    font-size: 32px;
    line-height: 1.35;
    color: #000000;
    margin: 0 0 0 0;
}

.diplomasi-tuneli-timeline-divider {
    width: 100%;
    height: 2px;
    background-color: #454545;
    margin: 10px 0;
}

.diplomasi-tuneli-timeline-description {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.62;
    color: #3f3f3f;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .diplomasi-tuneli-sidebar {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .diplomasi-tuneli-content {
        padding: 20px 0;
    }
    
    .diplomasi-tuneli-timeline-item {
        margin-bottom: 30px;
    }
}

/* İletişim Hero Section */
.iletisim-hero-section {
    position: relative;
    height: 528px;
    overflow: hidden;
    background-color: #e6e6d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.iletisim-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgb(255 255 255 / 0%) 8.26%, rgb(81 105 105 / 82%) 65.43%);
    background-blend-mode: multiply;
    z-index: 1;
}

.iletisim-hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 103px;
}

.iletisim-hero-content {
    position: relative;
}

.iletisim-hero-title {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0 0 20px 0;
    letter-spacing: 0.6px;
}

.iletisim-hero-line {
    width: 273px;
    height: 3px;
    position: relative;
}

.iletisim-hero-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(230, 230, 217, 0.6);
}

/* İletişim Content Section */
.iletisim-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.iletisim-main-title {
    font-family: 'Noto Sans';
    font-weight: 600;
    font-size: 32px;
    line-height: 1.35;
    color: #000000;
    margin: 0 0 40px 0;
}

.iletisim-info {
    margin-bottom: 40px;
}

.iletisim-info-item {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.62;
    color: #3f3f3f;
    margin: 0 0 10px 0;
}

.iletisim-info-label {
    font-family: 'Noto Sans';
    font-weight: 700;
}

.iletisim-map-wrapper {
    width: 100%;
    margin-bottom: 37px;
    overflow: hidden;
    border-radius: 4px;
}

.iletisim-map {
    width: 100%;
    height: 100%;
    border: none;
}

.iletisim-form-title {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 32px;
    line-height: 1.35;
    color: #000000;
    margin: 0 0 30px 0;
}

.iletisim-form-group {
    margin-bottom: 20px;
}

.iletisim-form-label {
    display: block;
    font-family: 'Noto Sans';
    font-weight: 700;
    font-size: 20px;
    line-height: 1.62;
    color: #3f3f3f;
    margin-bottom: 10px;
}

.iletisim-form-input,
.iletisim-form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #9d9d9d;
    background-color: rgba(243, 242, 237, 0.25);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.62;
    color: #3f3f3f;
    outline: none;
    transition: border-color 0.3s;
}

.iletisim-form-input:focus,
.iletisim-form-textarea:focus {
    border-color: #454545;
}

.iletisim-form-textarea {
    resize: vertical;
    min-height: 150px;
}

.iletisim-form-submit {
    background-color: #e5cfcf;
    border: none;
    padding: 15px 50px;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.35;
    color: #000000;
    cursor: pointer;
    transition: background-color 0.3s;
}

.iletisim-form-submit:hover {
    background-color: #d4b8b8;
}

/* Responsive */
@media (max-width: 991.98px) {
    .iletisim-hero-title {
        font-size: 40px;
    }
    
    .iletisim-main-title {
        font-size: 24px;
    }
    
    .iletisim-map-wrapper {
        height: 400px;
    }
    
    .iletisim-form {
        max-width: 100%;
    }
}

/* SSS (Sıkça Sorulan Sorular) Hero Section */
.sss-hero-section {
    position: relative;
    height: 528px;
    overflow: hidden;
    background-color: #e6e6d9;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.sss-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, rgb(255 255 255 / 0%) 8.26%, rgb(81 105 105 / 82%) 65.43%);
    background-blend-mode: multiply;
    z-index: 1;
}

.sss-hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 103px;
}

.sss-hero-content {
    position: relative;
}

.sss-hero-title {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0 0 20px 0;
    letter-spacing: 0.6px;
}

.sss-hero-line {
    width: 273px;
    height: 3px;
    position: relative;
}

.sss-hero-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(230, 230, 217, 0.6);
}

/* SSS Content Section */
.sss-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.sss-accordion {
    max-width: 100%;
}

.sss-accordion-item {
    border: none;
    border-bottom: 1px solid #9d9d9d;
    margin-bottom: 0;
    background-color: transparent;
}

.sss-accordion-item:first-child {
    border-top: 1px solid #9d9d9d;
}

.sss-accordion-button {
    background-color: transparent;
    border: none;
    padding: 20px 0;
    font-family: 'Noto Sans';
    font-weight: 700;
    font-size: 24px;
    line-height: 1.35;
    color: #000000;
    box-shadow: none;
    position: relative;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sss-accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #000000;
    box-shadow: none;
}

.sss-accordion-button::after {
    content: '+';
    background-image: none;
    width: 30px;
    height: 30px;
    font-size: 24px;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    transition: transform 0.3s;
    flex-shrink: 0;
    order: 2;
    margin-left: auto;
}

.sss-accordion-button:not(.collapsed)::after {
    content: '−';
    transform: none;
}

.sss-accordion-body {
    padding: 0 0 20px 0;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.62;
    color: #3f3f3f;
}

/* Responsive */
@media (max-width: 991.98px) {
    .sss-hero-title {
        font-size: 40px;
    }
    
    .sss-accordion-button {
        font-size: 20px;
        padding: 15px 0;
    }
    
    .sss-accordion-body {
        font-size: 18px;
    }
}

.sanal-sergi-hero-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 103px;
}

.sanal-sergi-hero-content {
    position: relative;
}

.sanal-sergi-hero-subtitle {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0 0 10px 0;
    letter-spacing: 0.6px;
}

.sanal-sergi-hero-title {
    font-family: 'Noto Sans';
    font-weight: 400;
    font-size: 60px;
    line-height: 1.2;
    color: var(--beyaz, #ffffff);
    margin: 0 0 20px 0;
    letter-spacing: 0.6px;
}

.sanal-sergi-hero-line {
    width: 273px;
    height: 3px;
    position: relative;
}

.sanal-sergi-hero-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(230, 230, 217, 0.6);
}

/* Sanal Sergi Content Section */
.sanal-sergi-content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.sanal-sergi-intro-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.62;
    color: #3f3f3f;
    margin: 0 0 20px 0;
    max-width: 1277px;
}

.sanal-sergi-gallery {
    margin-top: 40px;
}

/* Masonry Layout - CSS Grid */
.sanal-sergi-gallery-masonry {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 10px;
    gap: 0;
    margin-top: 40px;
}

.sanal-sergi-masonry-item {
    position: relative;
    grid-column: span 4;
    padding: 10px;
}

.sanal-sergi-masonry-item-wide {
    grid-column: span 8;
}

.sanal-sergi-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #f5f5f5;
    margin-bottom: 0;
}

.sanal-sergi-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.sanal-sergi-nav-btn {
    position: absolute;
    top: 16px;
    right: 15px;
    width: 27px;
    height: 33px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sanal-sergi-nav-icon {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

/* Responsive Sanal Sergi */
@media (max-width: 991.98px) {
    .sanal-sergi-hero-section {
        height: 400px;
    }
    
    .sanal-sergi-hero-subtitle {
        font-size: 32px;
    }
    
    .sanal-sergi-hero-title {
        font-size: 48px;
    }
    
    .sanal-sergi-hero-section .container {
        padding-bottom: 60px;
    }
    
    .sanal-sergi-intro-text {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .sanal-sergi-gallery-masonry {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .sanal-sergi-masonry-item {
        grid-column: span 3;
    }
    
    .sanal-sergi-masonry-item-wide {
        grid-column: span 6;
    }
}

@media (max-width: 767.98px) {
    .sanal-sergi-hero-section {
        height: 300px;
    }
    
    .sanal-sergi-hero-subtitle {
        font-size: 24px;
    }
    
    .sanal-sergi-hero-title {
        font-size: 36px;
    }
    
    .sanal-sergi-hero-line {
        width: 200px;
    }
    
    .sanal-sergi-hero-section .container {
        padding-bottom: 40px;
    }
    
    .sanal-sergi-intro-text {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .sanal-sergi-gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sanal-sergi-masonry-item {
        grid-column: span 1;
    }
    
    .sanal-sergi-masonry-item-wide {
        grid-column: span 2;
    }
}

/* Responsive Publications Section */
@media (max-width: 991.98px) {
    .publications-section {
        padding: 40px 0;
    }
    
    .sidebar-title {
        font-size: 22px;
    }
    
    .sidebar-menu-list li a {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .publications-section {
        padding: 30px 0;
    }
    
    .publications-sidebar {
        margin-bottom: 30px;
        padding: 61px 25px 5px 25px;
    }
    
    .sidebar-title {
        font-size: 20px;
    }
    
    .sidebar-menu {
        padding-left: 20px;
    }
    
    .sidebar-menu-list li a {
        font-size: 16px;
    }
    .publication-item-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .publications-content {
        padding: 30px 30px 30px;
    }
    .publication-text-wrapper {
        width: 100%;
        text-align: center;
        align-items: center;
    }
    .publication-item-right:not(:last-child)::after {
        width: 100%;
    }
    h3.publication-title-right {
        width: 100%;
        max-width: 100%;
        font-size: 18px;
    }
    .publication-description-right {
        font-size: 16px;
    }
    p {
        font-size: 16px;
    }
    .publications-content img {
        width: 100%;
    }
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(77, 77, 77, 0.8);
    mix-blend-mode: multiply;
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    background-color: #f3f2ed;
    box-shadow: 0px 20px 20px 0px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.gallery-modal-close {
    position: absolute;
    top: 32px;
    right: 41px;
    width: 44px;
    height: 54px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10001;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-close img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-modal-zoom-controls {
    position: absolute;
    top: 32px;
    left: 41px;
    display: flex;
    gap: 10px;
    z-index: 10001;
}

.gallery-modal-zoom-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #3f3f3f;
}

.gallery-modal-zoom-btn:hover {
    background: #fff;
    border-color: #3f3f3f;
    transform: scale(1.05);
}

.gallery-modal-zoom-btn:active {
    transform: scale(0.95);
}

.gallery-modal-zoom-btn svg {
    width: 20px;
    height: 20px;
}

.gallery-modal-image-container {
    width: 100%;
    padding: 115px 41px 0;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.gallery-modal-image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: grab;
    transition: transform 0.1s ease-out;
    transform-origin: center center;
}

.gallery-modal-image-wrapper.dragging {
    cursor: grabbing;
}

.gallery-modal-image-wrapper.zoomed {
    cursor: move;
}

.gallery-modal-image {
    width: 100%;
    height: auto;
    max-height: calc(90vh - 300px);
    object-fit: contain;
    user-select: none;
    pointer-events: none;
}

.gallery-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 40px 25px;
    gap: 20px;
}

.gallery-modal-description {
    flex: 1;
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 1.62;
    color: #3f3f3f;
    margin: 0;
    text-align: center;
    padding: 0 20px;
}

.gallery-modal-nav {
    width: 45px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gallery-modal-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-modal-prev {
    transform: rotate(270deg);
}

.gallery-modal-next {
    transform: rotate(90deg);
}

.sanal-sergi-image-wrapper {
    cursor: pointer;
}

.sanal-sergi-image-wrapper:hover {
    opacity: 0.9;
}

a.content-button {
    overflow: hidden;
    color: #000;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: "Noto Sans";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
    background: #E5CFCF;
    padding: 17px 30px;
    border-radius: 0;
    border: 0;
}

a.content-button:hover {
    background: #c3a4a4;
    color: #000;
}

@media (min-width: 1200px) {
    .h2, h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
}

/* Responsive Gallery Modal */
@media (max-width: 991.98px) {
    .gallery-modal-content {
        width: 90%;
        max-width: 700px;
    }
    
    .gallery-modal-image-container {
        padding: 80px 30px 0;
    }
    
    .gallery-modal-footer {
        padding: 0 30px 50px;
    }
    
    .gallery-modal-description {
        font-size: 18px;
    }
    
    .gallery-modal-zoom-controls {
        top: 20px;
        left: 30px;
        gap: 8px;
    }
    
    .gallery-modal-zoom-btn {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 767.98px) {
    .gallery-modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .gallery-modal-close {
        top: 20px;
        right: 20px;
        width: 35px;
        height: 40px;
    }
    
    .gallery-modal-zoom-controls {
        top: 15px;
        left: 20px;
        gap: 6px;
    }
    
    .gallery-modal-zoom-btn {
        width: 34px;
        height: 34px;
    }
    
    .gallery-modal-zoom-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .gallery-modal-image-container {
        padding: 60px 20px 0;
    }
    
    .gallery-modal-image {
        max-height: calc(95vh - 250px);
    }
    
    .gallery-modal-footer {
        padding: 0 20px 40px;
        flex-direction: row;
        gap: 15px;
    }
    
    .gallery-modal-description {
        font-size: 16px;
        padding: 0;
        order: 1;
    }
    
    .gallery-modal-nav {
        width: 31px;
        height: 35px;
    }
    
    .gallery-modal-prev {
        order: 2;
    }
    
    .gallery-modal-next {
        order: 3;
    }
}
/* Blog Grid Section */
.blog-grid-section {
    padding: 60px 0;
    background-color: var(--beyaz, #ffffff);
}

.blog-grid-wrapper {
    width: 100%;
}

.blog-card-item {
    height: 100%;
}

.blog-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: var(--beyaz, #ffffff);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
    margin: 0;
    box-shadow: 0px 3px 0px 0px rgba(0, 0, 0, 0.36);
}

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

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blog-card:hover .blog-card-overlay {
    opacity: 1;
}

.blog-read-more {
    text-decoration: none;
    color: var(--beyaz, #ffffff);
    font-family: 'Noto Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: var(--color-1, #C8102E);
}

.blog-read-more-text {
    position: relative;
    padding-left: 20px;
}

.blog-read-more-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22%;
    transform: translateY(-50%);
    width: 15px;
    height: 15px;
    background-image: url(../img/arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: brightness(0) invert(1);
    transform: rotate(90deg);
}

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

.blog-card-header {
    margin-bottom: 15px;
}

.blog-card-category {
    margin-bottom: 10px;
}

.blog-category-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: var(--color-4, #454545);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
    transition: color 0.3s ease;
}

.blog-category-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 1px;
    background-color: var(--color-4, #454545);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.blog-category-link:hover {
    color: var(--color-1, #C8102E);
}

.blog-category-link:hover::after {
    width: 100%;
    background-color: var(--color-1, #C8102E);
}

.blog-card-title {
    font-family: 'Noto Sans';
    font-weight: 600;
    font-size: 20px;
    line-height: 1.35;
    color: #000000;
    margin: 0;
}

.blog-title-link {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.blog-title-link:hover {
    color: var(--color-1, #C8102E);
}

.blog-card-content {
    flex: 1;
    margin-top: auto;
}

.blog-card-text {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.62;
    color: #3f3f3f;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Responsive Blog Grid */
@media (max-width: 991.98px) {
    .blog-grid-section {
        padding: 40px 0;
    }
    
    .blog-card-image {
        height: 220px;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-card-text {
        font-size: 15px;
    }
}

@media (max-width: 767.98px) {
    .blog-grid-section {
        padding: 30px 0;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-body {
        padding: 20px 15px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .blog-card-text {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }
}

