.index-page .hero-wrap {
    position: relative;
    max-height: 650px;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px
}

.index-page .hero-grid {
    display: grid;
    grid-template-columns: 1fr 366px;
    gap: 22px;
    height: 600px
}

.index-page .background-blur {
    position: absolute;
    inset: -80px;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(.9);
    transform: scale(1.1);
    transition: all .8s ease-in-out;
    z-index: 1
}

.index-page .hero-section {
    position: relative;
    z-index: 2;
    padding: 20px 0 36px
}

.index-page .slider-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 100%
}

.index-page .slider-content {
    position: relative;
    height: 100%
}

.index-page .slides {
    position: relative;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .3)
}

.index-page .slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all .6s cubic-bezier(.4, 0, .2, 1);
    visibility: hidden;
    display: flex;
    align-items: end;
    padding: 40px;
}

.index-page .slide.active {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
}

.index-page .slide-info {
    background: rgba(0, 0, 0, .4);
    padding: 16px 20px;
    border-radius: 10px;
    color: #fff;
    max-width: 80%;
    transform: translateY(40px);
    opacity: 0;
    transition: all .8s ease .3s;
}

.index-page .slide.active .slide-info {
    transform: translateY(0);
    opacity: 1
}

.index-page .slide-tarih {
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: #ffd700;
    font-weight: 600;
}

.index-page .slide-title {
    font-size: 1.45rem;
    line-height: 1.3;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.index-page .slide-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 2;
}


.index-page .navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.index-page .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .3);
    cursor: pointer;
    transition: all .3s ease;
    border: 2px solid transparent;
}

.index-page .nav-dot.active {
    background: #fff;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, .5);
}

.index-page .nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1;
    transition: all .3s ease;
    z-index: 3
}

.index-page .nav-arrow:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-50%) scale(1.1)
}

.index-page .nav-arrow.prev {
    left: 30px
}

.index-page .nav-arrow.next {
    right: 30px
}

.index-page .progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #129990, #096B68);
    transition: width .3s ease;
    z-index: 3
}

.index-page .right-content {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e6eef3;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px;
    overflow: hidden;
    height: 100%
}

.index-page .tweets-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0
}

.index-page .tweets-header h3 {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 700
}

.index-page .tweets-header span {
    color: #64748b;
    font-size: .9rem
}

.index-page .tweets {
    flex: 1;
    overflow-y: auto;
    scrollbar-gutter: stable;
    scrollbar-width: thin
}

.index-page .tweet {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 12px;
    border: 1px solid #eaeef3;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
    margin-bottom: 12px
}

.index-page .avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    color: #184a8c;
    flex-shrink: 0
}

.index-page .avatar img {
    width: 44px;
    height: 44px;
    border-radius: 50%
}

.index-page .t-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem
}

.index-page .t-name {
    font-weight: 700;
    color: #0f172a
}

.index-page .t-handle {
    color: #64748b
}

.index-page .t-time {
    color: #94a3b8
}

.index-page .t-text {
    margin-top: 4px;
    color: #0f172a;
    line-height: 1.5;
    font-size: .9rem
}

.index-page .t-actions {
    margin-top: 6px;
    display: flex;
    gap: 16px;
    color: #64748b;
    font-size: .85rem
}

.index-page .section {
    z-index: 10
}

.index-page .section-title {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    justify-self: center;
}

.index-page .section-title::before,
.index-page .section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e6eef3 20%, #cbd5e1 50%, #e6eef3 80%, transparent);
    margin: 0 30px
}

.index-page .section-title::before {
    background: linear-gradient(90deg, transparent, #e6eef3 20%, #cbd5e1)
}

.index-page .section-title::after {
    background: linear-gradient(90deg, #cbd5e1, #e6eef3 80%, transparent)
}

.index-page .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.index-page .info-card {
    position: relative;
    border: 1px solid #e6eef3;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    min-height: 160px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease
}

.index-page .info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .18)
}

.index-page .info-title {
    font-size: 1.4rem;
    color: #0b2e5c;
    margin-bottom: 20px;
    font-weight: 700
}

.index-page .info-desc {
    color: #334155;
    max-width: 70%
}

.index-page .info-illus {
    position: absolute;
    right: -10px;
    bottom: -10px;
    opacity: .25;
    font-size: 100px;
    line-height: 1
}

.index-page .kfeed {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .index-page .kfeed {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .index-page .kfeed {
        grid-template-columns: 1fr;
    }
}

.index-page .card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.index-page .card>a {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit
}

.index-page .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
}

.index-page .card .cov {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.index-page .card .cov img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block
}

.index-page .card .cov .no-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #075B5E 0%, #0a8a8d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.index-page .card .cov .no-img-placeholder::before {
    content: "";
    position: absolute;
    width: 60%;
    height: 60%;
    background: url('../../images/logo.png') no-repeat center center;
    background-size: contain;
    opacity: 0.12;
    filter: brightness(0) invert(1);
}

.index-page .card .cov .placeholder-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.index-page .card .bd {
    padding: 18px 18px 12px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.index-page .card .ttl {
    font-weight: 800;
    color: #0b2e5c;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    line-height: 1.4;
    font-size: 1.1rem;
}

.index-page .card .ex {
    color: #475569;
    font-size: .92rem;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.2em;
    line-height: 1.4;
    flex: 1;
}

.index-page .card .ft {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: auto;
    padding: 0 18px 18px 18px;
}

.index-page .card .btn {
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    background: var(--brand);
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.2s ease;
}

.index-page .card .btn:hover {
    background: #064e50;
}

.index-page .press-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 768px) {
    .index-page .press-grid {
        grid-template-columns: 1fr;
    }
}

.index-page .press-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all .3s ease;
}

.index-page .press-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    border-color: var(--brand);
    transform: translateY(-4px);
}

.index-page .press-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b2e5c;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    margin-bottom: 8px;
}

.index-page .press-desc {
    color: #475569;
    font-size: .95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
    margin-bottom: 12px;
}

.index-page .press-date {
    font-size: .9rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.index-page .press-link,
.index-page .announcements-link,
.index-page .info-link {
    text-align: right;
    margin-top: 24px;
}

.index-page .press-link a,
.index-page .announcements-link a,
.index-page .info-link a {
    color: #0b2e5c;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.index-page .press-link a:hover,
.index-page .announcements-link a:hover,
.index-page .info-link a:hover {
    color: var(--brand);
}

.index-page .press-link a i,
.index-page .announcements-link a i,
.index-page .info-link a i {
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.index-page .press-link a:hover i,
.index-page .announcements-link a:hover i,
.index-page .info-link a:hover i {
    transform: translateX(4px);
}

.index-page .announcements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 991px) {
    .index-page .announcements-grid {
        grid-template-columns: 1fr;
    }
}

.index-page .announcement {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
    transition: all .3s ease;
    height: 100%;
}

.index-page .announcements-grid a:nth-child(odd) .announcement {
    flex-direction: row-reverse;
}

.index-page .announcements-grid a:nth-child(even) .announcement {
    flex-direction: row;
}

.index-page .announcement:hover {
    border-color: #075B5E;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.index-page .a-date {
    background: #075B5E;
    color: #fff;
    border-radius: 8px;
    min-width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.index-page .a-date .day {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
}

.index-page .a-date .mon {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
}

.index-page .a-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.index-page .section-title img {
    margin-right: 10px
}

.index-page {
    --cols: 6;
    --gap: 60px;
}

.index-page .institutions-slider {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 0;
    overflow: hidden;
}

.index-page .inst-track {
    display: flex;
    gap: var(--gap);
    transition: transform .5s ease;
    width: max-content;
}

.index-page .inst-item {
    flex: 0 0 calc((100vw - (var(--gap) * (var(--cols) - 1))) / var(--cols));
    display: flex;
    align-items: center;
    justify-content: center;
}

.index-page .inst-item img {
    height: 115px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(40%);
    transition: .3s;
}

.index-page .inst-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.index-page .inst-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
    z-index: 2;
}

.index-page .inst-arrow.prev {
    left: 20px
}

.index-page .inst-arrow.next {
    right: 20px
}

@media (max-width: 1250px) {
    .index-page {
        --cols: 5;
        --gap: 40px;
    }

    .index-page .inst-item img {
        height: 130px;
    }

    .index-page .inst-arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1024px) {
    .index-page {
        --cols: 4;
        --gap: 30px;
    }

    .index-page .inst-item img {
        height: 140px;
    }

    .index-page .inst-arrow.prev {
        left: 10px;
    }

    .index-page .inst-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .index-page {
        --cols: 3;
        --gap: 22px;
    }

    .index-page .inst-item img {
        height: 130px;
    }

    .index-page .inst-arrow {
        width: 34px;
        height: 34px;
    }
}


@media (max-width: 560px) {
    .index-page {
        --cols: 2;
        --gap: 18px;
    }

    .index-page .inst-item img {
        height: 120px;
    }

    .index-page .inst-arrow.prev {
        left: 6px;
    }

    .index-page .inst-arrow.next {
        right: 6px;
    }
}

@media (max-width: 1250px) {
    .index-page :root {
        --cols: 5
    }

    .index-page .hero-grid {
        grid-template-columns: 1fr 320px
    }

    .index-page .info-grid {
        grid-template-columns: repeat(2, 1fr)
    }


}

@media (max-width: 1024px) {
    .index-page :root {
        --cols: 4
    }
}

@media (max-width: 920px) {
    .index-page .hero-wrap {
        max-height: none;
        overflow: visible
    }

    .index-page .hero-grid {
        grid-template-columns: 1fr;
        height: auto;
        gap: 20px
    }

    .index-page .slider-container {
        height: 420px
    }

    .index-page .right-content {
        height: auto;
        min-height: 300px
    }

    .index-page .tweets {
        max-height: 200px
    }

    .index-page .news-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .index-page .press-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .index-page :root {
        --cols: 3
    }

    .index-page .announcements-grid {
        grid-template-columns: 1fr
    }

    .index-page .announcement.reverse {
        flex-direction: row
    }

    .index-page .announcement.reverse .a-content {
        text-align: left
    }

    .index-page .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr))
    }
}

@media (max-width: 560px) {
    .index-page :root {
        --cols: 2
    }

    .index-page .info-grid {
        grid-template-columns: 1fr
    }

    .index-page .news-grid {
        grid-template-columns: 1fr
    }

    .index-page .slider-container {
        height: 350px
    }

    .index-page .hero-wrap {
        overflow: hidden
    }

    .index-page .slide-title,
    .index-page .slide-tarih {
        font-size: 16px
    }

    .index-page .nav-arrow {
        width: 35px;
        height: 35px
    }

    .index-page .nav-arrow.next {
        right: 10px
    }

    .index-page .nav-arrow.prev {
        left: 10px
    }

    .index-page .slide-info {
        left: 10px
    }
}