/* General */
/* ======================== */


    :root {
        --primary-color: rgb(0, 44, 119);
        --blue-320: rgb(0, 154, 166);
        --blue-3005: rgb(0, 122, 201);
        --blue-2727: rgb(61, 126, 219);
        --blue-549: rgb(94, 156, 174);
        --red-032: rgb(237, 41, 57);
    }
    
    /* General: html, body */
    html, body {
        font-family: Arial, Helvetica, sans-serif;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
        position: relative;
    }

    a {
        text-decoration: none;
    }

/* Font */
/* ======================== */
@font-face {
    font-family: "Bourgeois";
    src: url('../fonts/bourgeois/medium.ttf');
    src: url('../fonts/bourgeois/medium.eot?#iefix') format('embedded-opentype'),
    url('../fonts/bourgeois/medium.woff') format('woff'),
    url('../fonts/bourgeois/medium.ttf') format('truetype');
}

/* Blocks */
/* ======================== */

    /* Block: .Loading */
    .Loading {
        background-color: #FFF;
        justify-content: center;
        align-items: center;
        display: flex;
        height: 100vh;
        width: 100vw;
    }
    .Loading.Loading--Hidden {
        display: none;
    }
        .Loading .Loading__Animation {
            height: 100px;
            width: 100px;
        }

    /* Block: .Wrapper */
    .Wrapper {}
    .Wrapper.Wrapper--Hidden {
        display: none;
    }

    /* Block: .Header */
    .Header {}
    .Header--Fixed {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
    }
        .Header__Top {
            background-color: #fff;
            padding: 10px 0;
        }
            .Header__Top .Top__Brand {}
                .Header__Top .Top__Brand img {
                    width: auto;
                    height: 90px;
                }
                .Header__Top .Top__Logo img {
                    width: auto;
                    height: 60px;
                }
            .Header__Top .Top__Header {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
                .Header__Top .Top__Header .Header__Main {
                    font-size: 34px;
                    font-weight: 700;
                }
                .Header__Top .Top__Header .Header__Sub {
                    font-size: 20px;
                    font-weight: 400;
                    color: rgb(78, 78, 78);
                }
        .Header__Menu {
            background-color: #efefef;
            border-top: 1px solid rgb(228, 228, 228);
        }

    /* ================================
    💻 Tablet düzeni (768 px – 1024 px)
    ================================ */
    @media (max-width: 1024px) and (min-width: 601px) {
    .Header__Top .d-flex {
        flex-wrap: nowrap !important;
        justify-content: space-between !important;
        align-items: center !important;
        text-align: center;
        gap: 1rem;
    }

    .Top__Brand, .Top__Logo {
        flex: 0 0 80px; /* logolara biraz daha alan */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Top__Brand img {
        max-height: 60px !important;
        width: auto;
    }
    .Top__Logo img {
        max-height: 50px !important;
        width: auto;
    }
    .Top__Header {
        flex: 1;
        min-width: 0;
        padding: 0 1rem;
    }

    .Top__Header h1.Header__Main {
        font-size: 1.4rem;
        line-height: 1.3;
        margin-bottom: 0.3rem;
    }

    .Top__Header h2.Header__Sub {
        font-size: 1rem;
        color: #555;
    }
    }

    @media only screen and (max-width: 600px) {
        /* Block: .Header */
        .Header__Top .d-flex {
            flex-wrap: nowrap !important; /* alt alta değil, tek satırda kal */
            justify-content: space-between !important;
            align-items: center !important;
            text-align: center;
            gap: 0.5rem;
        }

        .Top__Brand, .Top__Logo {
            flex: 0 0 60px; /* logolara sabit alan */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .Top__Brand img {
            max-height: 50px !important;
            width: auto;
        }
        .Top__Logo img {
            max-height: 34px !important;
            width: auto;
        }

        .Top__Header {
            flex: 1;
            min-width: 0;
        }

        .Top__Header h1.Header__Main {
            font-size: 1.1rem !important;
            line-height: 1.3;
            margin-bottom: 0.3rem;
        }

        .Top__Header h2.Header__Sub {
            font-size: 0.80rem;
            color: #555;
        }

        .Header__Top {
            border-bottom: 1px solid #eee;
            padding-bottom: 0.5rem;
        }
    }
    
    /* HERO (Swiper) */
    .Swiper {
        position: relative;
        height: 434px;
        overflow: hidden;
        color: #fff;
    }
        .Swiper .Swiper__Wrapper {
            height: 100%;
        }
            .Swiper .Wrapper__Slide {
                position: relative;
                height: 100%;
            }
            .Swiper .Wrapper__Slide::before {
                content: "";
                position: absolute;
                inset: 0; /* top:0; right:0; bottom:0; left:0; */
                background: rgba(15, 39, 119, 0.622);
                z-index: 2;
            }
                .Swiper .Slide__Img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                    position: relative;
                    z-index: 1;
                }
                .Swiper .Slide__Content {
                    position: absolute;
                    inset: 0;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    text-align: center;
                    z-index: 3;
                }
                    .Swiper .Slide__Content .Content__Heading {
                        font-size: 42px;
                        font-weight: 700;
                        color: #fff;
                        text-shadow: 0 2px 8px rgba(0,0,0,0.5);
                    }
                    .Swiper .Slide__Content .Content__Text {
                        font-size: 20px;
                        font-weight: 400;
                        color: #f2f2f2;
                    }

    /* Oklar */
    .swiper-button-next,
    .swiper-button-prev {
        color: #fff;
        z-index: 4;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 24px;
    }
    @media only screen and (max-width: 600px) {
        /* HERO (Swiper) */
        .Swiper {
            position: relative;
            height: 434px;
            overflow: hidden;
            color: #fff;
        }
                .Swiper .Slide__Content {
                    padding: 0 60px;
                }
                        .Swiper .Slide__Content .Content__Heading {
                            font-size: 28px;
                            font-weight: 700;
                            color: #fff;
                            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
                        }
                        .Swiper .Slide__Content .Content__Text {
                            font-size: 16px;
                            font-weight: 400;
                            color: #f2f2f2;
                        }
        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 16px;
        }
    }

    /* ===========================
   🔹 Swiper Altı - Duyuru Alanı
=========================== */
.CallSection {
  background: linear-gradient(180deg, #eef5ff 0%, #f9fbff 100%);
  padding: 40px 0;
  text-align: center;
  color: #1e293b;
  position: relative;
}

.CallSection::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #2563eb; /* Piri Reis mavisi */
  border-radius: 2px;
}

.CallSection h3 {
  font-weight: 700;
  color: #0f172a;
  font-size: 26px;
  margin-bottom: 20px;
}

.CallSection p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 10px;
}

.CallSection strong {
  color: #1d4ed8;
  font-weight: 700;
}


    /* Section__Header */
    .Section__Title {
        text-align: center;
        font-size: 32px !important;
        margin-bottom: 28px;
    }

    /* Topics */
    .Topics__Card {
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    height: 100%;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    }

    .Topics__Card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    }

    /* Başlık */
    .Topics__Card .Card__Heading {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    }

    /* Metin */
    .Topics__Card .Card__Text {
    font-size: 16px;
    color: #1e293b;
    line-height: 1.6;
    }

    /* 🎨 Arka plan ve ikon renkleri (artık col-md-4 üzerinden doğru çalışıyor) */
    .row .col-md-4:nth-child(1) .Topics__Card {
    background-color: #eef5ff;
    border-color: #c7dbff;
    }
    .row .col-md-4:nth-child(2) .Topics__Card {
    background-color: #f7f4ff;
    border-color: #d9cbff;
    }
    .row .col-md-4:nth-child(3) .Topics__Card {
    background-color: #f2fff6;
    border-color: #bcebc6;
    }
    .row .col-md-4:nth-child(4) .Topics__Card {
    background-color: #fff9f3;
    border-color: #ffd9b3;
    }
    .row .col-md-4:nth-child(5) .Topics__Card {
    background-color: #fff5f6;
    border-color: #f3c8c8;
    }
    .row .col-md-4:nth-child(6) .Topics__Card {
    background-color: #f3fffd;
    border-color: #a9ede4;
    }

    /* İkon boyutu */
    .Topics__Card i {
    font-size: 24px;
    opacity: 0.9;
    margin-right: 6px;
    flex-shrink: 0;
    transition: color 0.3s ease;
    }

    /* Hover sırasında ikon biraz parlasın */
    .Topics__Card:hover i {
    opacity: 1;
    filter: brightness(1.2);
    }


    /* ===========================
   🔹 Etkinlik Takvimi
=========================== */
#etkinlik-takvimi {
  background: #fafafa;
}

.fc {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 10px;
  font-size: 0.95rem;
}

/* Başlık kısmı */
.fc-toolbar-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1E376D;
}

/* Gün kutuları */
.fc-daygrid-day-number {
  font-weight: 500;
  color: #1E376D;
}

/* Event (etkinlik) */
.fc-event {
  border: none !important;
  border-radius: 4px !important;
  color: #fff !important;
  font-size: 0.85rem;
  padding: 1px 4px;
  transition: 0.2s ease;
}

.fc-event:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

/* Bugün rengi */
.fc-day-today {
  background: rgba(30,55,109,0.06) !important;
}

.EventList {
  border: 1px solid #e5e7eb;
}

.EventList li {
  transition: 0.2s;
}
.EventList li:hover {
  background: #f8fafc;
  border-radius: 6px;
  padding-left: 4px;
}

/* ===============================
   📍 İletişim Kartı
=============================== */
#iletisim .ContactCard {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}
#iletisim .ContactCard:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

#iletisim .icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(30, 55, 109, 0.08);
  color: #1E376D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
#iletisim .d-flex:hover .icon-circle {
  background: #1E376D;
  color: #fff;
  transform: scale(1.1);
}

#iletisim h6 {
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}
#iletisim p,
#iletisim a {
  font-size: 0.9rem;
  color: #555;
}
#iletisim a:hover {
  color: #1E376D;
  text-decoration: underline;
}

/* Harita */
#iletisim iframe {
  filter: grayscale(0.1);
  transition: filter 0.3s ease;
}
#iletisim iframe:hover {
  filter: grayscale(0);
}

/* Mobil uyum */
@media (max-width: 768px) {
  #iletisim .ContactCard {
    border-radius: 12px;
  }
  #iletisim .map-wrapper {
    height: 280px;
  }
}


/* ================================
   ⚓ FOOTER
================================ */
.Footer {
  background-color: #131721;
  color: #e2e8f0;
  padding: 40px 0 0;
  font-size: 0.95rem;
  line-height: 1.8;
}
    .Footer h5 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
    }
    .Footer p,
    .Footer a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.2s ease;
    }
    .Footer a:hover {
    color: #fcd34d;
    }
    .footer ul {
    padding-left: 0;
    list-style: none;
    }
        .Footer ul li {
        margin-bottom: 0.5rem;
        }
    .Footer__Bottom {
        border-top: 1px solid #2b2b2bac;
    }

    /* Timeline */
    .timeline {
        position: relative;
        padding: 40px 0;
    }
    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(to bottom, var(--primary-color), #004080);
    }
        .timeline-item {
        position: relative;
        margin-bottom: 24px;
        }
        .timeline-item .dot {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 16px;
        height: 16px;
        background: white;
        border: 4px solid var(--primary-color);
        border-radius: 50%;
        top: 20px;
        z-index: 1;
        }
        .timeline-item:nth-child(odd) .content {
        margin-right: auto;
        width: 38%;
        text-align: right;
        padding-right: 30px;
        }
        .timeline-item:nth-child(even) .content {
        margin-left: auto;
        width: 38%;
        text-align: left;
        padding-left: 30px;
        }
        .timeline-item .content {
        background: #fff;
        color: #000;
        border-radius: 8px;
        padding: 20px;
        position: relative;
        box-shadow: 0 3px 12px rgba(0,0,0,0.15);
        border-left: 5px solid var(--primary-color);
        transition: 0.3s;
        }
        .timeline-item .content:hover {
        transform: translateY(-5px);
        }
        .timeline-item .year {
        background: var(--primary-color);
        color: #fff;
        padding: 4px 10px;
        border-radius: 20px;
        display: inline-block;
        font-size: 0.9rem;
        margin-bottom: 8px;
        }
        .timeline-item .number {
        font-weight: 700;
        font-size: 1.3rem;
        color: var(--primary-color);
        }
        .timeline-item .chairs {
        background: #f4f8ff;
        border-left: 4px solid var(--primary-color);
        padding: 8px 10px;
        margin-top: 10px;
        font-size: 0.9rem;
        }

        /* --- Responsive --- */
        @media (max-width: 768px) {
        .timeline::before {
            left: 30px;
        }
        .timeline-item:nth-child(odd) .content,
        .timeline-item:nth-child(even) .content {
            width: calc(100% - 70px);
            margin-left: 70px !important;
            text-align: left;
            padding: 15px;
        }
        .timeline-item .dot {
            left: 30px;
        }
        }

    /* Block: .Preview */
    .Preview {
        margin: 0;
        background-color: #ffffff;
        border-radius: 20px;
        position: relative;
        top: -20px;
        z-index: 2;
        padding-top: 28px;
    }
        .Preview .Preview__Heading {
            display: inline-block;
            color: #000;
            font-size: 36px;
            margin-bottom: 16px;
        }
        .Preview .Preview__Swiper {
            width: 100%;
            margin-bottom: 20px;
        }
            .Preview .Preview__Swiper .Swiper__Wrapper {
                margin-bottom: 38px;
            }
                .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                    .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity {
                        border: 1px solid rgba(128, 128, 128, 0.288);
                        border-radius: 10px;
                        padding: 12px;
                        width: 100%;
                    }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Img {
                            width: 100%;
                            height: 150px;
                            overflow: hidden;
                            border-radius: 6px;
                        }
                            .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Img img {
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                            }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Details {
                            margin: 8px 0;
                        }
                            .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Details .Details__Detail {
                                display: flex;
                                align-items: center;
                                gap: 10px;
                                font-size: 16px;
                                color: #171717d4;
                                margin-top: 4px;
                            }
                                .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Details .Details__Detail .Detail__Icon {
                                    height: 18px;
                                }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Subtitle {
                            background-color: rgba(255, 0, 0, 0.107);
                            border-radius: 20px;
                            padding: 2px 10px 6px;
                            width: max-content;
                            font-size: 14px;
                            color: rgb(146, 27, 27);
                        }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Heading {
                            font-size: 20px;
                            font-weight: 600;
                            margin-top: 8px;
                        }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Paragraph {
                            font-size: 16px;
                        }
        .Preview .Preview__News {
            border: 1px solid rgba(128, 128, 128, 0.331);
            padding: 10px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
            .Preview .Preview__News .News__Img {
                width: 100%;
                height: 74px;
                overflow: hidden;
                border-radius: 4px;
            }
                .Preview .Preview__News .News__Img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            .Preview .Preview__News .News__Heading {
                font-size: 18px;
                margin-bottom: 0;
                font-weight: 600;
            }
            .Preview .Preview__News .News__Date {
                font-size: 14px;
                color: #171717e2;
            }
        .Preview .Preview__Announcement {
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(128, 128, 128, 0.123);
        }
            .Preview .Preview__Announcement .Announcement__Day {
                color:  var(--primary-color);
                font-size: 22px;
                font-weight: 600;
                line-height: 24px;
            }
            .Preview .Preview__Announcement .Announcement__Month {
                color:  var(--primary-color);
                font-size: 24px;
                line-height: 24px;
            }
            .Preview .Preview__Announcement .Announcement__Year {
                color:  var(--primary-color);
                font-size: 16px;
                line-height: 24px;
            }
            .Preview .Preview__Announcement .Announcement__Heading {
                font-size: 18px;
                font-weight: 600;
            }
            .Preview .Preview__Announcement .Announcement__Paragraph {
                font-size: 16px;
                line-height: 16px;
                margin-bottom: 12px;
                color: #4e4e4e;
            }
            
            .Preview .Preview__Swiper .Swiper__Pagination {
                display: block;
                width: 100%;
            }

    /* Block: .Faculties */
    .Faculties {
        margin: 0px 0 80px;
        position: relative;
    }
        .Faculties .Faculties__Swiper {
            width: 100%;
            height: 280px;
            display: flex;
            align-items: center;
        }
        .Faculties .Faculties__Swiper .swiper-wrapper {
            height: 80%;
        }
            .Faculties .Faculties__Swiper .Swiper__Slide {
                background-color: transparent;
                height: 100%;
                width: 100%;
                perspective: 1000px;
            }
                .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    transition: transform 0.6s;
                    transform-style: preserve-3d;
                }
                .Faculties .Faculties__Swiper .Swiper__Slide:hover .Slide__Inner {
                    transform: rotateY(180deg);
                }
                    .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner .Inner__Front,
                    .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner .Inner__Back {
                        height: 100%;
                        width: 100%;
                        position: absolute;
                        -webkit-backface-visibility: hidden;
                        backface-visibility: hidden;
                    }
                    .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner .Inner__Front {
                        border: 1px solid rgb(92, 92, 92);
                        text-align: center;
                        font-size: 18px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 24px;
                        border-radius: 10px;
                        padding: 34px 20px;
                    }
                        .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner .Inner__Front .Front__Icon {
                            border: 1px solid rgba(92, 92, 92, 0.621); 
                            padding: 10px;
                            border-radius: 50%;
                        }
                    .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner .Inner__Back {
                        border: 1px solid var(--blue-2727);
                        background-color: var(--blue-2727);
                        text-align: center;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        flex-direction: column;
                        gap: 24px;
                        border-radius: 10px;
                        padding: 34px 20px;
                        transform: rotateY(180deg);
                    }
                        .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner .Inner__Back a {
                            color: #fff;
                            font-size: 18px;
                        }
                .Faculties .Faculties__Swiper .swiper-pagination {
                    bottom: -6px !important;
                }
                .Faculties .Faculties__Swiper .swiper-pagination-bullet {
                    width: 20px;
                    height: 4px;
                    display: inline-block;
                    border-radius: 0;
                    background: var(--swiper-pagination-bullet-inactive-color, #000);
                }
                .Faculties .Faculties__Swiper .swiper-pagination-bullet-active {
                    background: var(--blue-2727);
                    width: 34px;
                    transition: 0.4s ease;
                }

    /* Block: Blog */
    .News {
        margin: 0 0 40px;
    }
    .Page--Home .News {
        margin: 80px 0;
    }
        .News .News__Card {
            margin-bottom: 20px;
        }
            .News .News__Card .Card__Img  {
                margin-bottom: 18px;
                width: 100%;
                border-radius: 16px;
                overflow: hidden;
            }
                .DepartmentNews .News .News__Card .Card__Img img {
                    height: 160px !important;
                }
                .Page--Home .News .News__Card .Card__Img img {
                    width: 100%;
                    height: 180px !important;
                    object-fit: cover;
                }
                .News .News__Card .Card__Img img {
                    width: 100%;
                    height: 200px;
                    object-fit: cover;
                }
                .News .News__Card .Card__Heading {
                    font-size: 16px;
                    font-weight: 600;
                    line-height: 18px;
                }
            .Page--Home .News .News__Card .Card__Heading {
                font-size: 16px !important;
                font-weight: 600;
            }
            .News .News__Card .Card__Date {
                margin-top: 0;
                font-size: 14px;
                color: rgba(128, 128, 128, 0.829);
            }

    /* Block: .Announcements */
    .Announcements {
        margin: 0 0 40px;
    }
        .Announcements .Announcements__Card {
            margin-bottom: 34px;
        }
            .Announcements .Announcements__Card .Card__Img {
                width: 100%;
                height: 240px;
                overflow: hidden;
                border-radius: 20px;
                margin-bottom: 10px;
            }
            .Announcements .Announcements__Card .Card__Img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
            .Announcements .Announcements__Card .Card__Heading {
                font-size: 18px;
                line-height: 22px;
                font-weight: 600;
            }
            .Announcements .Announcements__Card .Card__Paragraph {
                font-size: 14px;
                margin-top: 8px;
                color: #333;
                margin-bottom: 6px;
            }
            .Announcements .Announcements__Card .Card__Date {
                margin-top: 0;
                font-size: 14px;
                color: rgba(128, 128, 128, 0.829);
            }
        .Announcements .Announcements__Item {
           margin-bottom: 8px;
        }
        .Page--Home .Announcements .Announcements__Item {
            border-bottom: 1px solid rgba(128, 128, 128, 0.151);
            margin-bottom: 10px;
            padding-bottom: 10px;
        }
            .Announcements .Announcements__Item .Item__Img {
                width: 100%;
                height: 84px;
                overflow: hidden;
                border-radius: 10px;
            }
            .Announcements .Announcements__Item .Item__Heading {
                font-size: 18px;
                font-weight: 600;
            }
            .Announcements .Announcements__Item .Item__Paragraph {
                font-size: 16px;
                color: #282828;
            }
            .Announcements .Announcements__Item .Item__Button {
                float: right;
                border: 1px solid rgba(0, 0, 0, 0.379);
                padding: 8px 18px;
                text-decoration: none;
                color: #171717;
                border-radius: 30px;
                font-size: 18px;
            }

    /* Block: .Statistics */
    .Statistics {
        background-image: url("../images/home/hero-5.jpg"), linear-gradient(45deg, rgba(48, 35, 30, 0.527),rgba(0, 0, 0, 0.8));
        background-blend-mode: overlay;
        margin: 100px 0;
        position: relative;
        padding: 100px 0;
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-size: cover;
    }
        .Statistics .Statistics__Box {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
            .Statistics .Statistics__Box .Box__Number {
                font-weight: 800;
                font-size: 40px;
                color: #ffffff;
            }
            .Statistics .Statistics__Box .Box__Title {
                font-size: 18px;
                color: #ffffffda;
                text-align: center;
            }

    /* Block: .QuickLinks */
    .QuickLinks {
        margin: 80px 0;
        z-index: 2;
        overflow: hidden;
    }
        .QuickLinks .QuickLinks__Heading {
            font-size: 18px;
        }
        .QuickLinks .QuickLinks__Img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            
        }
        .QuickLinks .QuickLinks__Content {
            position: absolute;
            padding: 8px 10px;
        }
        .QuickLinks .QuickLinks__Wrapper {
            display: grid;
            grid-gap: 8px;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            grid-auto-rows: 80px;
            grid-auto-flow: dense;
        }
        .QuickLinks .QuickLinks__Wrapper .Horizontal {
            grid-column: span 2;
        }
        .QuickLinks .QuickLinks__Wrapper .Vertical {
            grid-row: span 2;
        }
        .QuickLinks .QuickLinks__Wrapper .Big {
            grid-column: span 2;
            grid-row: span 2;
        }
        .QuickLinks .QuickLinks__Wrapper .Big, .QuickLinks .QuickLinks__Wrapper .Vertical {
            align-items: start;
        }
            .QuickLinks .QuickLinks__Wrapper .Big .Link__Text, .QuickLinks .QuickLinks__Wrapper .Vertical .Link__Text {
                align-self: flex-end;
            }
        .QuickLinks .QuickLinks__Link {
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.368);
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: 0.4s ease;
            overflow: hidden;
        }
        .QuickLinks .QuickLinks__Link .Link__Text {
            font-size: 18px;
            color: #ffffff;
        }
        .QuickLinks .QuickLinks__Link .Link__Icon {
            display: none;
        }

    /* Block: .OurPartners */
    .OurPartners {
        position: relative;
        height: 100%;
        width: 100%;
        margin-top: 34px;
    }
        .OurPartners .col-2 {
            display: flex;
            align-items: center;
            justify-content: center;
        }
            .OurPartners .col-2 img {
                width: 80px;
                height: 80px;
                margin-bottom: 20px;
            }

    /* UpButton */
    .UpButton {
        visibility: hidden;
    }
    .UpButton.UpButton--Visible {
        visibility: visible;
        position: fixed;
        display: flex; align-items: center;
        justify-content: center;
        z-index: 1000;
        background-color: var(--primary-color);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 1px solid rgba(0, 0, 0, 0.452);
        color: #FFF;
        bottom: 34px;
        right: 34px;
    }
        .UpButton.UpButton--Visible span {
            transform: rotate(-90deg);
            scale: 0.8;
        }

    .Thumbnails > a {
        display: flex;
        justify-content: center;
        align-items: center;

    }
    .Thumbnails > a > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 8px;
    }
    .Thumbnails {
        display: grid;
        grid-gap: 8px;
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        grid-auto-rows: 150px;
        grid-auto-flow: dense;
    }
    .Thumbnails .Horizontal {
        grid-column: span 2;
    }
    .Thumbnails .Vertical {
        grid-row: span 2;
    }
    .Thumbnails .Big {
        grid-column: span 2;
        grid-row: span 2;
    }

    #Videos > a {
        cursor: pointer;
    }
    

    /* Page--About */
    .Breadcrumb {
        margin: 0 0 80px;
        position: relative;
        top: 34px;
    }
        .Breadcrumb .Breadcrumb__List {
            color: #0000006e;
        }
            .Breadcrumb .Breadcrumb__List .List__Item {
                font-size: 18px;
                color: #00000096;
            }
    
    .Banner {
        margin: 0 0 60px;
        position: relative;
        padding: 66px 0;
        background-color: #1E376D;
        background-size: cover;
        background-position: center;
        background-blend-mode: multiply;
        color: #fff;
    }
        .Banner .Banner__Title {
            font-size: 48px;
        }

    /* Navigation */
    .Navigation {
        color: #000;
    }
        .pagination > li > a {
            color: #000;
        }
        .pagination > li > a:focus,
        .pagination > li > a:hover,
        .pagination > li > span:focus,
        .pagination > li > span:hover{
            color: #5a5a5a;
            background-color: #eee;
            border-color: #ddd;
        }
        .Navigation .pagination > .active > a {
            color: rgb(33, 33, 33);
        }       
        .Navigation .pagination > .active > a:hover {
            color: #000;
        }

    /* Text__Table */
    .Text__Table {
        border: 1px solid rgba(0, 0, 0, 0.148);
    }
        .Text__Table table {}
            .Text__Table table thead {
                font-size: 18px;
            }
            .Text__Table table tbody {}
                .Text__Table table tr {}
                    .Text__Table table tr th {
                        padding: 16px;
                    }
                    .Text__Table table tr td {
                        padding: 16px;
                    }

    /* ResearchCard */
    .ResearchCard {
        height: 100%;
        border-color: rgb(185, 214, 253);
    }
        .ResearchCard .ResearchCard__Header {
            border-color: rgb(185, 214, 253);
            background-color: transparent;
        }
        .ResearchCard .ResearchCard__Body {
            border-color: var(--blue-2727);
        }
            .ResearchCard .ResearchCard__Body .Body__Title {
                color: var(--blue-3005);
            }
            .ResearchCard .ResearchCard__Body .Body__Text {}

    /* Person */
    .Person {
        margin-bottom: 30px;
        text-align: center;
    }
        .DepartmentStaff .Person .Person__Img {
            height: 280px;
        }
        .Person .Person__Img {
            width: 100%;
            height: 360px;
            overflow: hidden;
            margin-bottom: 10px;
            border-radius: 10px;
        }
        .Person .Person__Img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .Person .Person__Fullname {
            font-weight: 600;
            color: #151515e3;
            font-size: 18px;
        }
        .Person .Person__Title {
            color: #1d1d1ddc;
            font-size: 16px;
        }
        .Person .Person__Contact {
            font-size: 16px;
            color: #1E376D;
        }
        .Person .Person__CV {
            display: inline-block;
            margin: 10px 0;
            font-size: 15px;
            color: #1E376D;
            border: 1px solid #1E376D;
            padding: 4px 8px;
            border-radius: 20px;
            transition: 0.4s;
        }
        .Person .Person__CV:hover {
            color: #dadbdd;
            background-color: #1E376D;
        }

    .Page__Layout {
        border-top-left-radius: 28px;
        border-top-right-radius: 28px;
        padding-top: 40px;
        width: 100%;
        background-color: #fff;
        position: relative;
        top: -60px;
    }
        .Page__Layout .Layout__Button {
            border: 1px solid #1e376d9e;
            padding: 12px 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 18px;
            color: #1E376D;
            font-weight: 600;
        }
            .Page__Layout .Layout__Button .Icon {
                rotate: -90deg;
            }
        .Page__Layout .Layout__Sidebar {
            margin-right: 20px;
        }
            .Page__Layout .Layout__Sidebar .Sidebar__Item {
                color: #000;
                font-size: 18px;
            }
            .Page__Layout .Layout__Sidebar .accordion {
                border: none;
                --bs-border-color: transparent;
            }
                .Page__Layout .Layout__Sidebar .accordion-item {
                    padding: 0;
                    border: 0;
                }
                    .Page__Layout .Layout__Sidebar .accordion-item .accordion-header {
                        padding: 0;
                        border: 0;
                    }
                        .Page__Layout .Layout__Sidebar .accordion-item .accordion-header .accordion-button {
                            padding: 0;
                            margin: 0;
                            background-color: transparent;
                            border: 0;
                        }
                        .Page__Layout .Layout__Sidebar .accordion-item .accordion-header .accordion-button::after {
                            background-size: 14px;
                        }
                            .Page__Layout .Layout__Sidebar .accordion-item .accordion-header .accordion-button a {
                                padding: 0;
                                color: #000;
                                font-size: 18px;
                            }
                    .Page__Layout .Layout__Sidebar .accordion-item .accordion-collapse {}
                        .Page__Layout .Layout__Sidebar .accordion-item .accordion-collapse .accordion-body {}
                            .Page__Layout .Layout__Sidebar .accordion-item .accordion-collapse .accordion-body a {
                                color: #000;
                                font-size: 17px;
                            }
        .Page__Layout .Layout__Body {}
            .Page__Layout .Layout__Body .Body__Paragraph {
                font-size: 18px;
            }
            .Page__Layout .Layout__Body .Body__Accordion {
                margin-top: 40px;
            }
                .Page__Layout .Layout__Body .Body__Accordion .Accordion__Item {
                    margin-bottom: 10px;
                }
                    .Page__Layout .Layout__Body .Body__Accordion .Accordion__Item .Item__Header {}
                        .Page__Layout .Layout__Body .Body__Accordion .Accordion__Item .Item__Header .Header__Button {
                            background-color: #1e376d2c;
                            color: #1E376D;
                            border-radius: 6px;
                            font-size: 18px;
                        }
                    .Page__Layout .Layout__Body .Body__Accordion .Accordion__Item .Item__Collapse {}
                        .Page__Layout .Layout__Body .Body__Accordion .Accordion__Item .Item__Collapse .Collapse__Body {
                            padding: 40px 20px;
                        }
                            .Page__Layout .Layout__Body .Body__Accordion .Accordion__Item .Item__Collapse .Collapse__Body .Body__Heading {
                                font-size: 20px;
                                font-weight: 600;
                                color: rgb(28, 62, 146);
                            }
                            .Page__Layout .Layout__Body .Body__Accordion .Accordion__Item .Item__Collapse .Collapse__Body .Body__Paragraph {
                                font-size: 18px;
                            }
            .Body__Text {}
                .Body__Text .Text__Img {
                    width: 380px;
                    height: 500px;
                    border-radius: 10px;
                    margin-top: 10px;
                    overflow: hidden;     
                    object-fit: cover;
                }
                .Body__Text .Text__Share {
                    background-color: #c9daf5cc;
                    padding: 4px 12px;
                    border-radius: 20px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    gap: 12px;
                    color: black;
                }
                    .Body__Text .Text__Share span {
                        scale: 0.8;
                    }
                .Body__Text .Text__Title {
                    font-size: 34px;
                    font-weight: 600;
                    color: #333;
                }
                .Body__Text .Text__Subtitle {
                    color: rgb(33, 33, 33);
                    font-size: 20px;
                }
                .Body__Text .Text__Paragraph {
                    font-size: 18px;
                    margin-top: 24px;
                    line-height: 26px;
                    text-align: justify;
                }
                .Body__Text .Text__Nav {}
                    .Body__Text .Text__Nav .Nav__Item {}
                        .Body__Text .Text__Nav .Nav__Item .Item__Link {
                            color: #11203f;
                        }
                .Body__Text .Text__Content {
                    padding-top: 34px;
                }
                    .Body__Text .Text__Content .Content__Body {}
                        .Body__Text .Text__Content .Content__Body .Body__Title {
                            font-size: 18px;
                            font-weight: 600;
                        }
                        .Body__Text .Text__Content .Content__Body .Body__Paragraph {
                            font-size: 17px;
                        }
                        .Body__Text .Text__Content .Content__Body .Body__Link {
                            display: flex;
                            width: max-content;
                            background-color: var(--primary-color);
                            padding: 20px 34px;
                            color: #fff;
                            border-radius: 6px;
                            margin-top: 20px;
                        }

/* Internship */
.Clubs {}
    .Clubs.Layout__Body {}
        .Clubs.Layout__Body .Body__Text {}
            .Clubs.Layout__Body .Body__Text .Text__Accordion {}
                .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item {
                    border: none;
                }
                    .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item .Item__Header {
}
                        .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item .Item__Header .Header__Button {
                            border: 1px solid rgba(0, 0, 0, 0.24);
                            margin-bottom: 10px;
                            border-left: 6px solid var(--blue-2727);
                        }
                        .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item .Item__Header .Header__Button:focus,
                        .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item .Item__Header .Header__Button:hover {
                            background-color: transparent;
                            outline: none;
                            box-shadow: none;
                        }
                        .Clubs .accordion-flush>.accordion-item>.accordion-header .accordion-button, .accordion-flush>.accordion-item>.accordion-header .accordion-button.collapsed {
                            background-color: transparent;
                            outline: none;
                            box-shadow: none;
                        }
                    .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item .Item__Collapse {}
                        .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item .Item__Collapse .Collapse__Body {}
                            .Clubs.Layout__Body .Body__Text .Text__Accordion .Accordion__Item .Item__Collapse .Collapse__Body .Body__Heading {}

/* Internship */
.Internship {}
    .Internship .Internship__Button {
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 16px;
        border: 1px solid rgba(0, 0, 0, 0.108);
        border-radius: 6px;
        color: #555555;
    }
        .Internship .Internship__Button .Button__Icon {
            padding: 16px;
        }
        .Internship .Internship__Button .Button__Input {}

/* Contact */
.Contact {}
    .Contact__Box {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        border: 1px solid rgba(0, 0, 0, 0.179);
        padding: 40px 0;
        border-radius: 20px;
    }
        .Contact__Box .Box__Icon {
           background-color: rgba(105, 137, 241, 0.173);
           width: min-content;
           padding: 16px;
           border-radius: 50%;
           margin-bottom: 10px;
        }
            .Contact__Box .Box__Icon img {
                width: 34px;
                height: 34px;
            }
        .Contact__Box .Box__Heading {
            font-weight: 600;
            font-size: 20px;
        }
        .Contact__Box .Box__Text {}

/* Page--Activities */
.Activities {}
    .Activities .Activities__Swiper {
        width: 100%;
        margin-bottom: 40px;
    }
        .Activities .Activities__Swiper .Swiper__Wrapper {}
            .Activities .Activities__Swiper .Swiper__Wrapper .Wrapper__Slide {
                text-align: center;
                font-size: 18px;
                background: #fff;
                height: 200px;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                border-radius: 20px;
                overflow: hidden;
            }
            .Activities .Activities__Swiper .Swiper__Wrapper .Wrapper__Slide::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                width: 100%;
                height: 100%;
                z-index: 10;
                background-color: rgba(0, 0, 0, 0.4);
            }
                .Activities .Activities__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
                .Activities .Activities__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Content {
                    position: absolute;
                    color: #fff;
                    font-size: 24px;
                    z-index: 100;
                    bottom: 24px;
                    left: 24px;
                }
                    .Activities .Activities__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Content .Content__Link {
                        color: #000;
                        background-color: #fff;
                        padding: 0 12px 4px;
                        border-radius: 20px;
                        margin-top: 8px;
                        font-size: 18px;
                        font-weight: 600;
                    }
    .Activities .Activities__Categories {
        text-align: center;
    }
        .Activities .Activities__Categories .Categories__Category {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            border-radius: 10px;
            height: 100px;
            margin-top: 10px;
            color: #fff;
            overflow: hidden;
            z-index: 100px;
        }
        .Activities .Activities__Categories .Categories__Category::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
            background-color: rgba(0, 0, 0, 0.4);
        }
            .Activities .Activities__Categories .Categories__Category .Category__Content {
                position: absolute;
                color: #fff;
                font-size: 20px;
                z-index: 100;
            }
            .Activities .Activities__Categories .Categories__Category .Category__Img {
                display: block;
                position: absolute;
                object-fit: cover;
                width: 100%;
                height: 100%;
            }

            .Activities__Cards .Cards__Activity {
                border: 1px solid #1e376d63;
                border-radius: 10px;
                padding: 8px;
                width: 100%;
                margin-top: 20px;
            }
            .Activities__Cards .Cards__Activity .Activity__Img {
                    width: 100%;
                    height: 120px;
                    margin-bottom: 10px;
                    overflow: hidden;
                    border-radius: 6px;
                }
                .Activities__Cards .Cards__Activity .Activity__Img img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }
                    .Activities__Cards .Cards__Activity .Activity__Details {
                    margin: 2px 0;
                }
                .Activities__Cards .Cards__Activity .Activity__Details .Details__Detail {
                        display: flex;
                        align-items: center;
                        gap: 10px;
                        font-size: 14px;
                        color: #171717d4;
                        margin-top: 4px;
                    }
                    .Activities__Cards .Cards__Activity .Activity__Details .Details__Detail .Detail__Icon {
                            height: 18px;
                        }
                        .Activities__Cards .Cards__Activity .Activity__Subtitle {
                    background-color: rgba(255, 0, 0, 0.107);
                    border-radius: 20px;
                    padding: 2px 8px 4px;
                    width: max-content;
                    font-size: 14px;
                    color: rgb(146, 27, 27);
                }
                .Activities__Cards .Cards__Activity .Activity__Heading {
                    font-size: 18px;
                    font-weight: 600;
                    margin-top: 8px;
                }
                .Activities__Cards .Cards__Activity .Activity__Paragraph {
                    font-size: 14px;
                    line-height: 17px;
                }

/* Faculty Page */
    .Faculty__Link {
        color: black;
        float: right;
        padding: 10px 20px;
        border-radius: 6px;
        background-color: rgba(128, 128, 128, 0.123);
    }
    .Faculty__Layout {}
        .Faculty__Layout .Layout__Body {
            margin-top: 180px;
        }
            .Faculty__Layout .Layout__Body .Body__Button {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 20px;
                width: 100%;
                border: 1px solid #11203f;
                margin-bottom: 20px;
                border-radius: 10px;
                font-size: 18px;
                color: #11203f !important;
                transition: 0.4 ease;
            }
            .Faculty__Layout .Layout__Body .Body__Button:hover {
                background-color: #11203f;
                color: #e6effa !important;
            }
            .Faculty__Layout .Layout__Body .Body__Swiper {
                width: 100%;
                margin-bottom: 20px;
            }
                .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper {
                    margin-bottom: 38px;
                }
                    .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper .Wrapper__Slide {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                        .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Img {
                            overflow: hidden;
                            width: 100%;
                            height: 380px;
                            border-radius: 10px;
                        }
                            .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Img img {
                                overflow: hidden;
                                width: 100%;
                                height: 380px;
                                border-radius: 10px;
                            }

/* Helpers */
/* ======================== */

    /* Helper: .Icon */
    .Icon {
        background-image: url("./../images/icons.png");
        background-repeat: no-repeat;
        display: inline-block;
        zoom: 0.5;
    }
    .Icon.Icon--Instagram {
        background-position: -12px -12px;
        height: 45px;
        width: 45px;
    }
    .Icon.Icon--ArrowLeft,
    .Icon.Icon--ArrowRight {
        background-position: -78px -10px;
        height: 46px;
        width: 46px;
    }
    .Icon.Icon--ArrowLeft {
        rotate: -180deg;
    }
    .Icon.Icon--Rss {
        background-position: -144px -10px;
        height: 41px;
        width: 41px;
    }
    .Icon.Icon--Location {
        background-position: -206px -10px;
        height: 42px;
        width: 38px;
    }
    .Icon.Icon--ArrowUpFromBracket {
        background-position: -264px -10px;
        height: 36px;
        width: 30px;
    }
    .Icon.Icon--Youtube {
        background-position: -12px -78px;
        height: 49px;
        width: 41px;
    }
    .Icon.Icon--Linkedin {
        background-position: -79px -77px;
        height: 42px;
        width: 42px;
    }
    .Icon.Icon--Search {
        background-position: -144px -72px;
        height: 42px;
        width: 42px;
    }
    .Icon.Icon--Facebook {
        background-position: -207px -73px;
        height: 51px;
        width: 23px;
    }
    .Icon.Icon--Bookmark {
        background-position: -264px -66px;
        height: 36px;
        width: 28px;
    }
    .Icon.Icon--Twitter {
        background-position: -11px -148px;
        height: 37px;
        width: 44px;
    }
    .Icon.Icon--Message {
        background-position: -76px -148px;
        height: 32px;
        width: 40px;
    }
    .Icon.Icon--Phone {
        background-position: -136px -148px;
        height: 32px;
        width: 32px;
    }
    .Icon.Icon--Chain {
        background-position: -206px -144px;
        height: 36px;
        width: 36px;
    }
    .Icon.Icon--Heart {
        background-position: -264px -122px;
        height: 26px;
        width: 30px;
    }
    .Icon.Icon--BookOpen {
        background-position: -264px -168px;
        height: 26px;
        width: 30px;
    }
    .Icon.Icon--PlayInCircle {
        background-position: -11px -207px;
        height: 32px;
        width: 32px;
    }
    .Icon.Icon--Hamburger {
        background-position: -64px -206px;
        height: 28px;
        width: 36px;
    }
    .Icon.Icon--Clock {
        background-position: -120px -206px;
        height: 24px;
        width: 24px;
    }
    .Icon.Icon--Bolt {
        background-position: -164px -206px;
        height: 24px;
        width: 22px;
    }
    .Icon.Icon--AngleDown,
    .Icon.Icon--AngleUp,
    .Icon.Icon--AngleRight {
        background-position: -206px -206px;
        height: 16px;
        width: 28px;
    }
    .Icon.Icon--AngleUp {
        rotate: -180deg;
    }
    .Icon.Icon--AngleRight {
        rotate: -90deg;
    }
    .Icon.Icon--Comment {
        background-position: -264px -214px;
        height: 26px;
        width: 28px;
    }
    .Icon.Icon--ArrowUpRight {
        background-position: -11px -261px;
        height: 15px;
        width: 15px;
    }


    /* Helper: .ObjectFit */
    .ObjectFit--Contain {
        object-fit: contain;
    }
    .ObjectFit--Cover {
        object-fit: cover;
    }

    /* Helper: .BackgroundColor */
    .BackgroundColor--F2EFEA {
        background-color: #F2EFEA;
    }

    /* Helper: .Color */
    .Color--1E376D {
        color: #1E376D;
    }

    /* Helper: .FontWeight */
    .FontWeight--100 {
        font-weight: 100;
    }
    .FontWeight--300 {
        font-weight: 300;
    }
    .FontWeight--400 {
        font-weight: 400;
    }
    .FontWeight--500 {
        font-weight: 500;
    }
    .FontWeight--600 {
        font-weight: 600;
    }
    .FontWeight--700 {
        font-weight: 700;
    }
    .FontWeight--800 {
        font-weight: 800;
    }
    .FontStyle--Italic {
        font-style: italic;
    }

    /* Helper: .Section__title */
    .Section__Title {
        font-size: 34px;
        font-weight: 600;
        line-height: 54px;
        letter-spacing: -5%;
    }

/* Customs
/* ======================== */

    /* Custom: 0001 */
    .Custom--0001 {
        color: #1E376D;
    }

@media only screen and (min-width: 1800px) {
    /* Block: .Header */
                .Header__Navbar .Navbar__Nav .Nav__Item {
                    font-size: 20px;
                }
                    .Header__Navbar .Navbar__Nav .Nav__Item .Item__Dropdown {}
                        .Header__Navbar .Navbar__Nav .Nav__Item .Item__Dropdown .Dropdown__Link {}
                        .Header__Navbar .Navbar__Nav .Nav__Item .Item__Dropdown .Dropdown__Divider {}
                .Header__Navbar .Navbar__Buttons .Buttons__Button {
                    font-size: 18px;
                }
                        .Header .Header__Navbar .Navbar__Topbar .Topbar__Menu .Menu__Link {
                            font-size: 17px;
                        }
                    .Header .Header__Navbar .Navbar__Topbar .Topbar__Social .Social__Link {}
                        .Header .Header__Navbar .Navbar__Topbar .Topbar__Social .Social__Link .Icon {
                            scale: 0.7;
                        }

    /* Block: .Hero */
    .Hero {
        height: 88vh;
    }
        .Hero .Hero__Card {
            position: absolute;
            background-color: #FFF;
            width: 200px;
            height: 200px;
            top: 0;
            right: 0;
        }
            .Hero .Hero__Swiper .Swiper__Next {
                height: 80%;
            }
            .Hero .Hero__Swiper .swiper-button-next:after {
                font-size: 18px;
                padding: 10px 14px;
            }
                .Hero .Hero__Swiper .Swiper__Slide .Slide__Content {
                    bottom: 280px;
                }
                    .Hero .Hero__Swiper .Swiper__Slide .Slide__Content .Content__Heading {
                        font-size: 80px !important;
                    }
                    .Hero .Hero__Swiper .Swiper__Slide .Slide__Content .Content__Paragraph {
                        font-size: 18px !important;
                        margin-top: 10px;
                    }

    /* Block: .Preview */
    .Preview {
        padding-top: 48px;
    }
        .Preview .Preview__Heading {
            font-size: 28px;
            margin-bottom: 20px;
        }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Img {
                            width: 100%;
                            height: 160px;
                            overflow: hidden;
                            border-radius: 6px;
                        }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Details {
                            margin: 20px 0;
                        }
                            .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Details .Details__Detail {
                                font-size: 16px;
                            }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Subtitle {
                            padding: 4px 10px;
                            font-size: 14px;
                        }
                        .Preview .Preview__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Activity .Activity__Paragraph {
                            font-size: 15px;
                        }
        .Preview .Preview__News {
            margin-bottom: 20px;
        }
            .Preview .Preview__News .News__Heading {
                font-size: 17px;
            }
            .Preview .Preview__News .News__Date {
                font-size: 15px;
            }
        .Preview .Preview__Announcement {
            margin-bottom: 10px;
            padding-bottom: 2px;
        }
            .Preview .Preview__Announcement .Announcement__Day {
                font-size: 26px;
            }
            .Preview .Preview__Announcement .Announcement__Month {
                font-size: 18px;
            }
            .Preview .Preview__Announcement .Announcement__Year {
                font-size: 18px;
            }
            .Preview .Preview__Announcement .Announcement__Heading {
                font-size: 17px;
            }
            .Preview .Preview__Announcement .Announcement__Paragraph {
                font-size: 14px;
                margin-bottom: 10px;
            }

    /* Block: .Faculties */
                    .Faculties .Faculties__Swiper .Swiper__Slide .Slide__Inner .Inner__Front {
                        font-size: 18px;
                    }

    /* Block: News */
            
            .News .News__Card .Card__Heading {
                font-size: 14px;
            }
            .Page--Home .News .News__Card .Card__Heading {
                font-size: 16px;
            }
            .News .News__Card .Card__Date {
                font-size: 14px;
            }
            .Page--Home .News .News__Card .Card__Date {
                font-size: 15px;
            }

    /* Block: .Announcements */
            .Announcements .Announcements__Card .Card__Heading {
                font-size: 18px;
            }
            .Announcements .Announcements__Card--Big .Card__Img {
                height: 200px !important;
            }
            .Announcements .Announcements__Card--Big .Card__Heading {
                font-size: 14px;
            }
            .Announcements .Announcements__Card--Big .Card__Date {
                font-size: 10px;
            }
            .Announcements .Announcements__Card .Card__Img {
                height: 140px;
            }
            .Announcements .Announcements__Card .Card__Date {
                font-size: 16px;
            }
            .Announcements .Announcements__Item .Item__Heading {
                font-size: 18px;
            }
            .Announcements .Announcements__Item .Item__Paragraph {
                font-size: 15px;
            }
            .Announcements .Announcements__Item .Item__Button {     
                font-size: 16px;
            }

    /* Block: .Statistics */ 
            .Statistics .Statistics__Box .Box__Number {
                font-size: 48px;
            }
            .Statistics .Statistics__Box .Box__Title {
                font-size: 18px;
            }

    /* Block: .QuickLinks */
    .QuickLinks {
        margin: 0 0 80px;
        padding-top: 48px;
    }
        .QuickLinks .QuickLinks__Heading {
            font-size: 24px;
        }
        .QuickLinks .QuickLinks__Link {
        }
            .QuickLinks .QuickLinks__Link .Link__Text {
                font-size: 18px;
            }
            .QuickLinks .QuickLinks__Link .Link__Icon {
                scale: 1.8;
            }

    /* Block: .OurPartners */
    .OurPartners {
        margin-top: 80px;
    }
            .OurPartners .col-2 img {
                width: 88px;
                height: 88px;
            }

    
    /* Block: .Activities */
        .Activities .Activities__Activity--Small .Activity__Heading {
            font-size: 14px;
        }
        .Activities .Activities__Activity--Big .Activity__Heading {
            font-size: 16px;
        }

    /* Footer */
            .Footer__Social .Social__Icon {
                width: 42px;
                height: 42px;
            }
            .Footer__Social .Social__Icon span {
                scale: 0.9;
            }
        .Footer__Heading {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .Footer__Link {
            font-size: 16px;
        }
        .Footer__Button {
            padding: 12px 14px;
        }
        .Footer__Bottom {
            font-size: 14px;
        }
        .Section__Header .Header__Heading {
            font-size: 30px;
        }
        .Section__Header .Header__Link {
            font-size: 16px;
        }

    /* Faculty Page */
    .Faculty__Layout {}
            .Faculty__Layout .Layout__Body .Body__Button {
                padding: 24px;
            }
            .Faculty__Layout .Layout__Body .Body__Swiper {
                width: 100%;
                margin-bottom: 20px;
            }
                .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper {
                    margin-bottom: 38px;
                }
                    .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper .Wrapper__Slide {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }
                        .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Img {
                            overflow: hidden;
                            width: 100%;
                            height: 400px;
                        }
                            .Faculty__Layout .Layout__Body .Body__Swiper .Swiper__Wrapper .Wrapper__Slide .Slide__Img img {
                                overflow: hidden;
                                width: 100%;
                                height: 400px;
                            }
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {}

.Page--StaffMinimal {
    font-family: 'Inter', sans-serif;
    color: #333;
    background: #f9f9f9;
    padding-bottom: 60px;
}

.Page__Header {
    text-align: center;
    padding: 60px 20px 20px;
}

.Page__Title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.Page__Team .container {
    margin: 80px auto 0;
}

.Team__Grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
}

.Team__Member {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.Team__Member:hover {
    transform: translateY(-5px);
}
.Team__PhotoWrapper {
  width: 100%;
  max-width: 160px;
  height: 224px; /* Sabit yükseklik */
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.Team__PhotoWrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 768px) {
.Team__PhotoWrapper {
  max-width: 120px;
  height: 164px; /* Sabit yükseklik */
}
}


.Team__Name {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.Team__Role {
    font-size: 0.95rem;
    color: #777;
    margin-top: 5px;
}

.Team__Empty {
    text-align: center;
    font-size: 1rem;
    color: #999;
}
