:root {
    --color-text: #FFF;
    --color-bg: #111;
    --color-bg-secondary: #191919;
    --color-text-secondary: #111;
    --color-border: #DEE2E6;
    --color-text-hover: #575757;
    --color-shadow: #D1D2D3;

    --color-error: #EF4444;
    --color-white: #FFF;
    --color-success: green;
    --color-accent: #3B82F6;
    --color-dark: #333;
    --color-transparent: transparent;

    --font-family-arial: Arial, sans-serif;
    --font-family-calibri: Calibri, sans-serif;
    --font-family-roboto: 'Roboto', sans-serif;
    --font-family-sans-serif: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

a:hover {
    text-decoration: none;
}

body {
    font-family: var(--font-family-roboto);
    box-sizing: border-box;
    background-color: rgb(249 250 251 / var(--tw-bg-opacity, 1));
    font-size: 16px;
    width: 100vw;
    overflow-x: hidden;
}

a{
    color:#b00e23;
}

.main-container {
    padding-right: 2rem;
}

.hero-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-hover {
    transition: all 0.3s ease;
}

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

.expert-card {
    transition: all 0.3s ease;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.magazine-cover {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.magazine-cover:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.magazine-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(102, 126, 234, 0.1) 0%,
            rgba(118, 75, 162, 0.1) 100%);
    z-index: 1;
}

.stats-counter {
    font-variant-numeric: tabular-nums;
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.pulse-animation {
    animation: pulse 2s infinite;
}

.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

/* .nav-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #667eea;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
} */

.archive-item {
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.archive-item:hover {
    border-left-color: #667eea;
    background: #f8fafc;
    transform: translateX(5px);
}

.publisher-logo {
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.publisher-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.reference-card {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    transition: all 0.3s ease;
}

.reference-card:hover {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    transform: translateY(-3px);
}

.card-tab {
    border-radius: 1rem;
    overflow: hidden;
    width: 350px;
    margin: auto;
}

.card-tab .card-header {
    padding: 0;
    background-color: transparent;
    border: 0;

    font-size: 0.875rem;
    line-height: 1.25rem;
    border-bottom: 1px solid rgb(229 231 235 / var(--tw-border-opacity, 1));
}

.card-tab .card-header .nav-pills .nav-item .nav-link {
    padding: 1.25rem;
    border: none;
    border-radius: 0;
    text-wrap: nowrap;
}

.card-tab .card-header .nav-pills {
    justify-content: space-between;
    flex-wrap: nowrap;
}

.card-tab .card-body .tab-title {
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-bottom: .5rem;
}

.card-tab .card-body .tab-subtitle {
    font-size: 1rem;
}

.card-tab .card-body form {
    margin-top: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group-h {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.jc-space-between {
    justify-content: space-between;
}

.form-group-centered {
    align-items: center;
}

.btn-action {
    padding: 1rem;
    border-radius: 1rem;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: var(--color-text);
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    color: var(--color-text);
}

.btn-text {
    transform: translateY(-2px);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}

.nav-item .active {
    background-color: #1d4ed8;
    color: var(--color-text);
}

.checkbox-label {
    font-size: 0.875rem;
    font-weight: 500;
}

a {
    text-decoration: none;
}

.container-fluid {}

.container-horizontal {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    flex-grow: 1;
    flex-wrap: wrap;
}

.container-vertical {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
}

.card {
    padding: 1rem;
    border-radius: .75rem;
}

.card-header {
    background-color: transparent;
    border-bottom: 0;
    padding: 1rem 1rem;
}

.card-header h2 {
    color: #b00e23;
    font-weight: 700;
    cursor: default;
}

.card .card-body {
    padding: 1rem 3rem;
}

.btn-purple-gradient {
    background-color: #9B39B8;
    border-color: #9B39B8;
    transition: background-color 0.2s ease-in-out;
}

.btn-purple-gradient:hover {
    background-color: #8A2EA6;
    border-color: #8A2EA6;
}

.hover-purple-600:hover {
    color: #9B39B8 !important;
}

.breadcrumb {
    background-color: #F5F5F5;
    padding: 1rem;
}

.breadcrumb-item a {
    color: #b00e23;
}

/*
Navbar
*/
.header-main {
    background-color: #FFF;
    box-shadow: 0 .25rem .25rem rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
}

/* Top Header Section */
.header-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: .75rem 2rem 0 .25rem;
    gap: 2rem;
}

/* Logo Container */
.logo-container {
    margin-top: .5rem;
    padding-left: 1rem;
    flex-shrink: 0;
}

.logo-container img {
    width: 32rem;
}

/* Right Side Container */
.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .75rem;
    flex: 1;
}

/* ISSN Section */
.issn-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .875rem;
    color: #555555;
}

.issn-section span {
    font-weight: 500;
}

/* Action Links Section */
.action-links {
    display: flex;
    gap: .5rem;
}

.action-links a {
    padding: .45rem .75rem;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 400;
    border-radius: .5rem;
    transition: all .3s ease;
}

.action-links .advanced-search {
    background-color: #b00e23;
    border-color: #b00e23;
    color: #FFF;
}

.action-links .advanced-search:hover {
    background-color: #555555;
}

.action-links .login-btn {
    background-color: #555555;
    border-color: #555555;
    color: #FFF;
}

.action-links .login-btn:hover {
    background-color: #b00e23;
}

/* Search Form */
.search-form {
    display: flex;
    gap: 0;
}

.search-form input {
    padding: .35rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: .5rem 0 0 .5rem;
    font-size: .875rem;
    min-width: 16.75rem;
    outline: none;
    transition: border-color .3s ease;
}

.search-form input:focus {
    border-color: #3b82c1;
}

.search-form button {
    padding: .35rem 1rem;
    background-color: #555555;
    color: #FFF;
    border: none;
    border-radius: 0 .5rem .5rem 0;
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color .3s ease;
}

.search-form button:hover {
    background-color: #b00e23;
}

/* Navigation Menu */
.nav-menu {
    padding: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: .1rem;
}

.nav-menu-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #b00e23;
}

.nav-menu-list li {
    position: relative;
    width: fit-content;
    min-width: 15rem;
}

.nav-menu-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .1rem;
    height: 100%;
    background-color: #FFF;
}

.nav-menu-list li a {
    display: block;
    padding: 0.45rem 2rem;
    color: #FFF;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: background-color .3s ease;
    text-align: center;
    text-wrap: nowrap;
}

.nav-menu-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFF;
}

/* Secondary Navigation */
.nav-secondary {
    padding: 0;
}

.nav-secondary-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #555555;
}

.nav-secondary-list li {
    position: relative;
    min-width: 15rem;
    width: fit-content;
}

.nav-secondary-list li:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: .1rem;
    height: 100%;
    background-color: #FFF;
}

.nav-secondary-list li a {
    display: block;
    padding: 0.45rem 2rem;
    color: #FFF;
    text-decoration: none;
    font-size: .875rem;
    transition: background-color .3s ease;
    text-align: center;
}

.nav-secondary-list li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFF;
}

.footer {
    position: relative;
    background-color: #555555;
    margin: 5rem 0rem 0rem 0rem;
    padding: 2rem 0rem 5rem 0rem;
}

.footer a {
    color: #FFF;
}

.footer .footer-pleksus-logo {
    position: absolute;
    height: 2rem;
    width: auto;
    right: 2rem;
    bottom: 1rem;
}

.card-titled .card-header h2 {
    position: relative;
}

.card-titled .card-header h2::before {
    content: '';
    display: block;
    position: absolute;
    top: 0.25rem;
    left: -1rem;
    background-color: #b00e23;
    width: 8px;
    height: 30px;
}

.articles-container {
    padding: 20px;
}

.articles-container .card .card-body {
    padding: 0 2rem;
}

.article-group-header {
    background: #b00e23;
    margin-top: 10px;
    line-height: 30px;
    color: white;
    padding-left: 10px;

    display: flex;
    flex-direction: row;
    gap: 1rem;
    justify-content: flex-start;
    align-items: center;
}

.articles-container h1 {
    font-size: 2rem;
    color: #b00e23;
    font-weight: 700;
    line-height: 1.7;
    position: relative;
    cursor: default;
}

.articles-container h1::before {
    background-color: #b00e23;
    content: '';
    display: block;
    position: absolute;
    top: 0.75rem;
    left: -1rem;
    width: 8px;
    height: 30px;
}

.article-group-header h2 {
    font-size: 1rem;
    margin: 0;
    font-weight: bold;
}

.article-type-group {
    padding: 0;
}

.article-type-group .col-12 {
    padding: 0;
}

.article-item {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    padding: 2rem;
}

.article-title {
    font-size: 1rem;
    font-weight: bold;
    color: #b00e23;
    text-decoration: none;
    display: block;
    margin-bottom: .3rem;
}

.article-authors {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.article-abstract-box {
    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow: hidden;
    max-height: 9.8em;
    line-height: 1.4em;
    border-left: 1px solid #CCC;
    padding-left: 15px;
}

.article-item+hr {
    margin-top: 0;
    margin-bottom: 20px;
    border-top: 1px solid #333;
    height: 2px;
}

.article-type-navigator {
    padding: 10px 0;
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
}

.type-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    margin-right: 20px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.type-link i {
    margin-right: 5px;
    font-size: 16px;
    color: #333;
}

.type-link:hover {
    color: #007bff;
}

.type-link:hover i {
    color: #007bff;
}

.authors-index-link i {
    color: #333;
}

.tilt-img {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    width: 300px;
}

.tilt-hover-img-no-shadow {
    border: none !important;
    box-shadow: none !important;
    height: 200px;
}

.tilt-hover-img {
    display: block;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    transform: perspective(600px) rotateY(0deg) translateX(0px);
    margin-top: 2rem;
    margin-bottom: 1rem;
    border: 1px solid hsla(0, 0%, 49%, 0.536);
}

.card-img-top {
    max-height: 350px;
    width: auto;
    margin: auto;
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 10px 10px 10px #747474;
}

.tilt-hover-img:hover {
    transform: perspective(300px) rotate3d(0, -1, 0, calc(var(--i, 1) * 10deg));
    transition: .4s;
}

.content-row {
    padding: 0 1rem 0 2rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin: 10px auto;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.3s;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Açılma Animasyonu */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

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

.abstract-link,
.similar-link {
    color: #b00e23;
}

.btn-pdf {
    background-color: #b00e23;
    height: fit-content;
    width: fit-content;
    padding: 1rem 2rem;
    border-radius: 1rem;
    color: #FFF;
    margin-right: 2rem;
    transition: .25s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

.btn-pdf:hover {
    background-color: #555555;
    color: #FFF;
    border-radius: 2rem;
    box-shadow: 1rem 1rem 2rem #bebebe, -1rem -1rem 2rem #ffffff;
    transform: translateY(-.5rem);
}

.btn-pdf i {
    font-size: 2rem;
}

.kutu {
    background-color: #f7f7f6;
    border-radius: 2rem;
    background: #FFF;
    box-shadow: 1rem 1rem 2rem #bebebe, -1rem -1rem 2rem #ffffff;
    height: 100%;
}

.kutu-baslik {
    padding: 1rem 2rem;
}

.kutu-baslik h2 {
    color: #b00e23;
    border-bottom: 1px solid #b1b1b1;
    padding-bottom: 10px;
    margin: 0;
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.kutu-baslik h2 a {
    display: inherit;
    width: 150px;
    float: right;
    text-align: right;
    color: #818181;
}

.ic-baslik {
    font-size: 16px;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    width: 96%;
    padding-bottom: 10px;
}

.ic-baslik a {
    color: #b00e23 !important;
    font-size: 16px;
    font-weight: bold;
}

.ic-icerik {
    overflow: hidden;
    height: 100px;
    text-align: justify;
}

.ic-resim {
    float: left;
    margin-right: 15px;
    margin-bottom: 10px;
}

.ic-resim img {
    border: 2px solid #7b7b7b;
    width: 100%;
    height: auto;
    max-width: 100px;
    max-height: 100px;
}

.kutu-icerik {
    border-bottom: 1px solid #b1b1b1;
    float: left;
    min-height: 110px;
    width: 100%;
    padding-bottom: 10px;
    padding: 1rem 2rem;
}

.kutu-icerik:nth-last-child(1) {
    border-bottom: 0;
}

.ortala {
    margin: 0 auto;
}

.yan-kutu-resim {
    float: left;
    margin-right: 15px;
    width: 592px;
    overflow: hidden;
}

.yan-kutu-icerik {
    overflow: hidden;
    text-align: justify;
}

.kucuk-kutu {
    margin-top: 5px;
    border: 1px solid #e0e0e0;
    padding: 2px;
}

.kucuk-kutu-baslik h2 {
    color: #b00e23;
    font-size: 16px;
    width: 100%;
    line-height: 0;
    float: left;
    text-align: center;
}

.kucuk-kutu-baslik h2 a {
    color: #b00e23;
    font-size: 16px;
    width: 100%;
    line-height: 0;
    float: left;
    text-align: center;
}

.kucuk-kutu-icerik {
    float: left;
    margin-left: 15px;
    margin-top: 6px;
    width: 100%;
}

.yan-kutu-yukseklik {
    border: 1px solid #e0e0e0;
}

.slider {
    width: 100%;
    height: var(--height);
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, #000 10% 90%, transparent);
}

.slider .list {
    display: flex;
    width: 100%;
    min-width: calc(var(--width) * var(--quantity));
    position: relative;
}

.slider .list .item {
    width: var(--width);
    height: var(--height);
    position: absolute;
    left: 100%;
    animation: autoRun 45s linear infinite;
    transition: filter 0.5s;
    animation-delay: calc((45s / var(--quantity)) * (var(--position) - 1) - 45s) !important;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.slider .list .item img {
    height: 300px;
    width: auto;
    border-radius: 1.5rem;
    transition: .35s cubic-bezier(0.175, 0.885, 0.32, 1.275) all;
}

@keyframes autoRun {
    from {
        transform: translateZ(0) translateX(0);
        left: 100%;
    }

    to {
        transform: translateZ(0) translateX(0);
        left: calc(var(--width) * -1);
    }
}

.slider:hover .item {
    animation-play-state: paused !important;
    filter: grayscale(1);
}

.slider .item:hover {
    filter: grayscale(0);
}

.slider .item:hover img {
    border-radius: 0;
    transform: scale(1.05);
}

.slider[reverse="true"] .item {
    animation: reversePlay 10s linear infinite;
}

@keyframes reversePlay {
    from {
        left: calc(var(--width) * -1);
    }

    to {
        left: 100%;
    }
}

.indexing-announcements {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.lead,
.lead a {
    color: #b00e23;
}

.archive-year-header {
    background-color: #b00e23;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.archive-card {
    border: 1px solid #b00e23;
    border-radius: 8px;
    box-shadow: .5rem .5rem 1rem #bebebe, -.5rem -.5rem 1rem #ffffff;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
    height: 100%;
    background-color: #fff;
    overflow: hidden;
    flex: 1 0 25%;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-height: 300px;
    min-height: 300px;
}

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

.archive-card-body {
    padding: 1rem;
    flex: 1;
    overflow-y: auto;
}

.issue-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
    font-size: 0.95rem;
}

.issue-row:last-child {
    border-bottom: none;
}

.issue-row:hover {
    background-color: #f8f9fa;
}

.issue-title {
    color: #b00e23;
    font-weight: 500;
    text-decoration: none;
    flex: 1;
}

.issue-title:hover {
    color: #555555;
}

.issue-pdf-link {
    color: #b00e23;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    padding-left: 10px;
}

.issue-pdf-link:hover {
    color: #555555;
    text-decoration: underline;
}

.empty-year {
    padding: 20px;
    text-align: center;
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .header-top {
        padding: 1rem;
    }

    .action-links {
        flex-direction: column;
        width: 100%;
    }

    .action-links a {
        width: 100%;
        text-align: center;
    }

    .search-form {
        width: 100%;
        flex-direction: column;
    }

    .search-form input {
        min-width: 100%;
    }

    .search-form button {
        width: 100%;
    }

    .nav-menu-list,
    .nav-secondary-list {
        flex-direction: column;
    }

    .nav-menu-list li:not(:last-child)::after {
        display: none;
    }

    .nav-menu-list li a,
    .nav-secondary-list li a {
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .content-row {
        padding: .5rem 0 0 1.5rem;
    }

    main {
        padding: 0rem;
    }

    .slider {
        height: auto !important;
    }

    .slider .list {
        display: block;
        width: 100%;
        min-width: unset;
    }

    .slider .list .item img {
        width: 100%;
        height: auto;
        border-radius: 1rem;
    }

    .kutu {
        margin-bottom: 1.5rem;
        padding: 1rem;
    }

    .ic-resim {
        float: none;
        margin-right: 0;
        text-align: center;
        margin-bottom: 1rem;
    }

    .ic-resim img {
        max-width: 100%;
        width: auto;
    }

    .ic-icerik {
        height: auto;
        text-align: left;
    }

    .article-item {
        flex-direction: column;
        padding: 1rem;
    }

    .article-details {
        width: 100%;
        padding-right: 0;
        border-right: none;
        margin-bottom: 1rem;
    }

    .article-abstract-box {
        width: 100%;
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 1rem;
        max-height: none;
    }

    .article-row {
        flex-direction: column;
        text-align: center;
    }

    .article-image-col {
        flex: 0 0 auto;
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 1rem;
    }

    .article-info-col {
        padding-right: 0;
        text-align: left;
    }

    .article-abstract-col {
        flex: 0 0 auto;
        max-width: 100%;
        border-left: none;
        border-top: 1px solid #f0f0f0;
        margin-top: 1rem;
        padding-left: 0;
        padding-top: 1rem;
    }

    .card-tab {
        width: 100%;
    }

    .kutu-baslik {
        padding: 0;
    }

    .kutu-baslik h2 {
        font-size: .95rem;
    }

    .kutu {
        height: fit-content;
    }

    .card-img-top {
        max-height: 250px;
    }

    .kutu-secondary {
        height: 100%;
    }

    .kutu-secondary-container {
        padding: 0;
        margin: 0 0 1rem 0;
    }

    .kutu-icerik {
        padding: 0;
    }

    .ic-baslik a {
        font-size: .875rem;
    }

    .article-authors {
        font-size: .875rem;
    }

    .articles-icerik-y {
        font-size: .875rem;
    }
}

@media (max-width: 992px) {

    .header-top {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
        gap: 1rem;
    }

    .header-right {
        align-items: center;
        width: 100%;
    }

    .action-links {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .search-form {
        width: 40%;
    }

    .search-form input {
        min-width: unset;
        width: 100%;
        border-radius: 0.5rem;
    }

    .search-form button {
        width: auto;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
    }

    .content-row {
        padding: .5rem 0 0 1.5rem;
    }

    .content-row .kutu {
        width: 100%;
        height: fit-content;
    }

    .content-row .kutu-secondary-container {
        height: fit-content;
        width: 100%;
        padding: 0;
    }

    .content-row .kutu-secondary {
        height: 100%;
        margin-top: 1rem;
        width: 100%;
    }

    .nav-menu-list,
    .nav-secondary-list {
        flex-direction: column;
        height: auto;
    }

    .nav-menu-list li,
    .nav-secondary-list li {
        width: 100%;
    }

    .nav-menu-list li:not(:last-child)::after,
    .nav-secondary-list li:not(:last-child)::after {
        display: none;
    }

    .nav-menu-list li a,
    .nav-secondary-list li a {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: .25rem;
    }

    .nav-menu {
        flex-direction: column;
        align-items: center;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu-list {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0;
        margin-top: 10px;
        border-top: 1px solid #eee;
    }

    .nav-menu-list.show {
        display: flex;
        animation: slideDown 0.3s ease-out;
    }

    .nav-menu-list .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    .nav-menu-list .nav-link {
        padding: .5rem;
        display: block;
    }

    .nav-secondary-list {
        display: flex !important;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        width: 100%;
    }

    .archive-container .container-horizontal {
        flex-direction: column;
    }

    .card-titled {
        padding: 0 1rem;
    }

    .card-titled .card-header {
        padding: .75rem 1rem;
    }

    .card-titled .card-header h2 {
        font-size: 1.25rem;
    }

    .ic-icerik {
        font-size: .875rem;
    }

    .card-titled .card-header h2::before {
        top: 0.15rem;
        width: 0.35rem;
        height: 1.15rem;
    }

    .card-titled .card-body {
        padding: .5rem 1rem;
    }

    .indexing-announcements .card .lead {
        font-size: .875rem;
    }

    .indexing-announcements .card .lead-abstract {
        font-size: .875rem;
    }

    .kutu-secondary .kutu-icerik {
        float: none;
    }

    .kutu-secondary {
        margin-bottom: 1rem;
    }
}

@media (min-width: 992px) {

    .navbar .navbar-toggler {
        display: none !important;
    }

    .nav-menu-list.collapse {
        display: flex !important;
        flex-direction: row !important;
        height: auto !important;
        visibility: visible !important;
        flex-basis: auto;
        justify-content: center;
        align-items: center;
        background-color: #b00e23;
        width: 100%;
    }

    .nav-menu-list li {
        width: auto !important;
        min-width: unset !important;
        border-bottom: none !important;
    }

    .nav-menu-list li a {
        text-align: center;
        border-bottom: none !important;
        white-space: nowrap;
    }

    .nav-menu-list li:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        width: 2px;
        background-color: #FFF;
        display: block !important;
    }

    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }

    .logo-container {
        margin: 0;
        padding: 0;
    }

    .header-right {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: auto;
        gap: 0.5rem;
    }

    .action-links {
        justify-content: flex-end;
        margin-bottom: 0;
        flex-direction: row;
        width: auto;
    }

    .search-form {
        width: auto;
        flex-direction: row;
    }

    .search-form button {
        width: auto;
        border-radius: 0 0.5rem 0.5rem 0;
        margin-left: 0;
    }

    .kutu-secondary .kutu-icerik {
        float: none;
    }
}

@media (min-width:993px) and (max-width: 1650px) {

    /* .header-top {
        flex-direction: column;
        align-items: center;
        padding: 1rem 2rem;
    }

    .header-right {
        align-items: center;
        width: 100%;
    }

    .nav-menu-list {
        flex-wrap: wrap;
    }

    .kutu-baslik h2 {
        font-size: 1rem;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-wrap: nowrap;
    }

    .kutu-baslik h2 span {
        display: block !important;
        float: none !important;
        width: unset !important;
    } */

    /* .content-row .kutu {
        width: 100%;
        height: fit-content;
    } */

    /* .kutu-secondary-container {
        width: 100%;
        margin-bottom: 1rem;
        margin-top: 1rem;
        padding: 0;
    } */
}


@media only screen and (min-width: 768px) and (max-width:1023px) {
    body {
        font-size: 16px;
    }

    #pageSlider {
        height: 250px;
    }

    #pageSlider img {
        height: 200px;
    }

    .slider .list .item {
        animation-delay: calc((20s / var(--quantity)) * (var(--position) - 0) - 20s) !important;
    }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
    .container {
        width: 960px;
        margin: 0 auto;
    }

    .nav-menu-list .nav-item a {
        font-size: .875rem;
        padding: 0.25rem 1rem;
    }

    .nav-secondary-list li {
        min-width: fit-content;
    }

    .nav-secondary-list li a {
        font-size: .875rem;
        padding: 0.25rem 1rem;
    }

    .kutu-baslik h2 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-wrap: nowrap;
        font-size: 1rem;
    }

    .ic-baslik {
        font-size: .875rem;
    }

    .articles-icerik-y {
        font-size: .875rem;
    }

    .article-authors {
        font-size: .875rem;
    }
}

@media only screen and (min-width: 1280px) {
    .container {
        width: 1140px;
    }
}