/* main.css 배포일:2026.03.19 11:57:29 */ 
@charset "utf-8";

/* ========================================
   Main Section
======================================== */
#mainSection {
    width: 100%;
	padding-top:80px;
}

/* 키 비주얼 */
.main-visual {
    position: relative;
    height: 840px;
    overflow: hidden;
}

/* 메인 비주얼 영상 */
.main-visual-video {
    position: relative;
    width: 100%;
    height: 840px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.main-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.main-video.ended {
    opacity: 0;
    z-index: 1;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-fallback.show {
    opacity: 1;
    z-index: 2;
}

.main-visual-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-visual-swiper .swiper-slide {
    width: 100%;
    height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.main-visual-nav {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 2;
}

.main-visual-nav .btn-nav {
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-shrink: 0;
    flex-grow: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-visual-nav .btn-nav img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-visual-indicator {
    display: flex;
    gap: 8px;
    align-items: center;
    width: 120px;
    height: 36px;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 18px;
    padding: 0 12px;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    flex-shrink: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 20px;
    height: 20px;
    background: transparent;
    border: 4px solid #66C1BF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
    display: block;
}


@media (max-width: 750px) {
	.main-visual {
        height: auto;
        aspect-ratio: 1920 / 900;
    }

    .main-visual-swiper {
        position: absolute;
        inset: 0;
        height: 100%;
    }

    .main-visual-swiper .swiper-slide {
        height: 100%;
    }

    .main-visual-nav .btn-nav {
        width: 40px;
        height: 40px;
    }
    
    .main-visual-nav {
        bottom: 24px;
        gap: 20px;
    }
    
    .main-visual-indicator {
        width: 92px;
        height: 26px;
    }
    
    .indicator-dot {
        width: 6px;
        height: 6px;
    }
    
    .indicator-dot.active {
        width: 30px;
    }
    
}

.main-visual-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.main-visual-content .btn-play {
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.main-visual-quicklinks {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: flex;
    gap: 13px;
    z-index: 100;
}

.quicklinks-tabs {
    display: flex;
    gap: 13px;
}

.quicklinks-tabs ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.quicklinks-tab {
    width: 96px;
    height: 96px;
    border: none;
    background: #01375a;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    cursor: pointer;
    padding: 10px;
    text-align: center;
}

.quicklinks-tabs li:first-child .quicklinks-tab {
    border-radius: 24px 0 0 0;
}

.quicklinks-tabs li:last-child .quicklinks-tab {
    border-radius: 0 0 0 24px;
}
.quicklinks-tabs li.active .quicklinks-tab,
.quicklinks-tabs li.is-open .quicklinks-tab {
    background: #6c9900;
}

.quicklinks-menu {
    position: absolute;
    top: 0;
    right: 109px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    width: 208px;
    min-width: 188px;
}

.quicklinks-tabs li.active .quicklinks-menu {
    display: flex;
}

.quicklinks-item {
    padding: 10px;
    text-align: center;
    border-radius: 24px;
    background: #fff;
}

.quicklinks-link {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #313638;
    line-height: 1.5;
    text-decoration: none;
    padding: 10px;
    margin: -10px;
    border-radius: 24px;
    transition: background-color 0.2s;
    text-align: center;
}

.quicklinks-link:hover {
    background-color: #f0f8dd;
}

.quicklinks-item p {
    font-size: 16px;
    font-weight: 700;
    color: #313638;
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* 학사 일정 */
.main-calendar {
    padding: 80px 100px;
}

.calendar-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 32px;
}

.calendar-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.calendar-icon {
    width: 56.4px;
    height: 47.233px;
}

.calendar-controls {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: space-between;
}

.calendar-month {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 4px 0;
}

.calendar-month span {
    font-size: 28px;
    font-weight: 700;
    color: #282828;
    line-height: 30px;
    letter-spacing: -0.56px;
}

.calendar-month.search-select {
    position: relative;
}

.calendar-month .search-select-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    cursor: pointer;
}

.calendar-month .search-select-btn span {
    font-size: 28px;
    font-weight: 700;
    color: #282828;
    line-height: 30px;
    letter-spacing: -0.56px;
}

.calendar-month .search-select-btn img {
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.calendar-month.search-select.is-open .search-select-btn img {
    transform: rotate(180deg);
}

.calendar-month .search-select-options {
    display: none;
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    padding: 10px 0;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 100;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.calendar-month .search-select-options::-webkit-scrollbar {
    width: 6px;
}

.calendar-month .search-select-options::-webkit-scrollbar-track {
    background: transparent;
    margin: 16px 0;
}

.calendar-month .search-select-options::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}

.calendar-month .search-select-options::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.calendar-month .search-select-options::-webkit-scrollbar-button {
    display: none;
}

.calendar-month.search-select.is-open .search-select-options {
    display: block;
}

.calendar-month .search-select-options button {
    display: block;
    width: 100%;
    padding: 10px 24px;
    font-size: 18px;
    color: #333;
    text-align: left;
    white-space: nowrap;
}

.calendar-month .search-select-options button:hover {
    background: #f5f5f5;
}

.calendar-month .search-select-options button.is-selected {
    color: #6c9900;
    font-weight: 700;
}

.calendar-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.calendar-nav .btn-nav {
    border: none;
    background: transparent;
    padding: 0;
}

.calendar-nav .btn-nav img {
    width: 40px;
    height: 40px;
    display: block;
}

.calendar-nav .btn-nav:disabled,
.calendar-nav .btn-nav[aria-disabled="true"] {
    opacity: 0.35;
    cursor: default;
}

.btn-nav {
    width: 40px;
    height: 40px;
    border: 1px solid #dde0e2;
    border-radius: 400px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 8px;
}

.btn-nav img {
    width: 24px;
    height: 24px;
}

.calendar-list {
    display: flex;
    gap: 20px;
    border-radius: 20px;
    background: #fff;
    padding: 24px 16px;
}

.calendar-slider {
    overflow: hidden;
}

.calendar-track {
    display: flex;
    width: 100%;
    transition: transform 0.4s;
}

.calendar-track .calendar-list {
    flex: 0 0 100%;
}

.calendar-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0 16px;
    border-right: 1px solid #dde0e2;
}

.calendar-item:last-child {
    border-right: none;
}

.calendar-item-title {
    font-size: 24px;
    font-weight: 700;
    color: #282828;
    line-height: 28px;
    letter-spacing: -0.48px;
}

.calendar-item-date {
    font-size: 18px;
    font-weight: 500;
    color: #282828;
    opacity: 0.6;
    line-height: 1.5;
    letter-spacing: -0.36px;
}

/* 즐겨찾기/바로가기 */
.main-quicklinks {
    background: #f0f8dd;
    padding: 40px 100px;
}

.quicklinks-grid {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.quicklink-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-decoration: none;
}

.quicklink-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    padding: 24px;
}

.quicklink-item:hover .quicklink-icon,
.quicklink-item.active .quicklink-icon {
    background: #89c200;
    border: 1px solid #89c200;
}

.quicklink-icon img {
    width: 32px;
    height: 32px;
}

.quicklink-text {
    font-size: 20px;
    font-weight: 700;
    color: #070707;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.quicklink-item:hover .quicklink-text,
.quicklink-item.active .quicklink-text {
    color: #4f7000;
}

/* 공지사항 & 뉴스 */
.main-notice-news {
    padding: 80px 100px;
    display: flex;
    gap: 40px;
}

.notice-section {
    flex: 1;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 35px;
}

.section-tab-list {
    width: 100%;
}

.section-tab-list-items {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;    
}

.section-tab-list-item {
    position: relative;
}

.section-tab-list-btn {
    padding: 0;
    border: none;
    background: transparent;
    font-size: 32px;
    font-weight: 700;
    color: #282828;
    line-height: 32px;
    letter-spacing: -0.4px;
    opacity: 0.4;
    cursor: pointer;
    position: relative;
}

.section-tab-list-item.active .section-tab-list-btn {
    color: #4F7000;
    opacity: 1;
}


.notice-content-wrapper {
    position: relative;
}

.notice-list {
    display: none;
    flex-direction: column;
    gap: 10px;
}

.notice-list.active {
    display: flex;
}

.section-title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-icon {
    width: 56.4px;
    height: 47.233px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #282828;
    line-height: 1.3;
    letter-spacing: -0.96px;
}

.section-controls {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
}


.notice-item {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 24px;
    background: #f9f9f9;
    border-radius: 12px;
    text-decoration: none;
}

.notice-content {
    flex: 1;
    display: flex;
    gap: 12px;
    align-items: center;
}

.notice-badge {
    padding: 4px 12px;
    background: #fff;
    border-radius: 4px;
    font-size: 20px;
    font-weight: 700;
    color: #6c9900;
    line-height: 28px;
    letter-spacing: -0.4px;
    white-space: nowrap;
}

.notice-title {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    color: #282828;
    line-height: 28px;
    letter-spacing: -0.4px;
}

.notice-date {
    font-size: 18px;
    font-weight: 500;
    color: #282828;
    opacity: 0.6;
    line-height: 1.5;
    letter-spacing: -0.36px;
    white-space: nowrap;
}

.news-banner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 560px;
    height: 504px;
}

.news-banner-item {
    flex: 1;
    position: relative;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-decoration: none;
    overflow: hidden;
}

.news-banner-item.primary {
    background: #89c200 url(/home/image/main/news_banner_primary.png) no-repeat center / cover;
}

.news-banner-item.secondary {
    background: #0e6196 url(/home/image/main/news_banner_secondary.png) no-repeat center / cover;
}

.news-banner-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.64px;
}

.news-banner-item.secondary .news-banner-title:first-child {
    font-weight: 500;
}


.news-banner-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
}

.news-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* KJU NOW */
.main-kju-now {
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.kju-now-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.kju-now-body {
    display: flex;
    gap: 32px;
}

.kju-now-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.kju-now-card {
    position: relative;
    border-radius: 32px;
    padding: 40px;
    overflow: hidden;
}

.kju-now-card.large {
    background: #002b46;
    display: flex;
    padding: 40px 40px 50px 40px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    align-self: stretch;
    height: 500px;
}

.kju-now-card.large .kju-now-card-title {
    margin-bottom: 20px;
}

.kju-now-card.large .kju-now-logo {
    margin-top: auto;
}

.kju-now-card.small {
    border-radius: 20px;
    height: 300px;
    display: flex;
    padding: 40px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex: 1 0 0;
    align-self: stretch;
}

.kju-now-card.small .kju-now-card-title {
    margin-bottom: 0;
}

.kju-now-card.primary {
    background: #89c200 url(/home/image/main/kju_now_card_bg_primary.png) no-repeat center / cover;
}

.kju-now-card.secondary {
    background: #0e6196 url(/home/image/main/kju_now_card_bg_secondary.png) no-repeat center / cover;
}

.kju-now-card-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 30px;
    letter-spacing: -0.56px;
    margin-bottom: 24px;
}

.kju-now-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.kju-now-line {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: nowrap;
}

.kju-now-highlight {
    display: flex;
    align-items: flex-end;
    gap: 6px;
}

.kju-now-number {
    font-size: 90px;
    font-weight: 700;
    color: #fff;
    line-height: 60px;
    letter-spacing: -1.8px;
}

.kju-now-text {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -0.64px;
}

.kju-now-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -0.36px;
    white-space: nowrap;
}

.kju-now-badge {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 100px;
    padding: 12px 20px;
    width: 100%;
}

.kju-now-badge p {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -0.36px;
    text-align: center;
}

.kju-now-logo {
    height: 160px;
    align-self: stretch;
}

.kju-now-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.kju-now-cards {
    display: flex;
    gap: 20px;
}

.kju-now-card-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
}

.kju-now-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kju-now-card-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -0.36px;
}

.kju-now-middle {
    width: 438px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}

.kju-now-right {
    width: 438px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.kju-now-press {
    height: 246px;
    border-radius: 20px;
    background: #0e6196 url(/home/image/main/news_banner_secondary.png) no-repeat center / cover;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kju-press-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.kju-press-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.64px;
}

.kju-press-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.kju-press-controls .btn-nav {
    border: none;
    background: transparent;
    padding: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.kju-press-controls .btn-nav img {
    width: 40px;
    height: 40px;
    display: block;
}

.kju-press-controls .btn-nav:disabled,
.kju-press-controls .btn-nav[aria-disabled="true"] {
    opacity: 0.35;
    cursor: default;
}

.kju-press-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.kju-press-track {
    display: flex;
    transition: transform 0.3s ease;
}

.kju-press-slide {
    flex: 0 0 100%;
    text-decoration: none;
}

.kju-press-slide-title {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    line-height: 32px;
    letter-spacing: -0.48px;
    margin: 0;
}

.kju-now-master {
    height: 560px;
    border-radius: 24px;
    background: #f9f9f9;
    overflow: hidden;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kju-master-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.kju-master-title {
    font-size: 32px;
    font-weight: 700;
    color: #282828;
    line-height: 28px;
    letter-spacing: -0.64px;
}

.kju-master-controls {
    display: flex;
    gap: 10px;
    align-items: center;
}

.kju-master-controls .btn-nav {
    border: none;
    background: transparent;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.kju-master-controls .btn-nav img {
    width: 40px;
    height: 40px;
    display: block;
}

.kju-master-controls .btn-nav:disabled,
.kju-master-controls .btn-nav[aria-disabled="true"] {
    opacity: 0.35;
    cursor: default;
}

.kju-master-slider {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 8px 8px;
}

.kju-master-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease;
}

.kju-master-slide {
    flex: 0 0 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.kju-master-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.kju-master-photo img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 1;
    border-radius: 10px;
}

.kju-master-info {
    width: 100%;
    border-radius: 24px;
    background: #89c200;
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.kju-master-slide:not(.is-active) .kju-master-info {
    background: #828e92;
}

.kju-master-en {
    font-size: 24px;
    font-weight: 700;
    color: #01375a;
    line-height: 1.3;
    letter-spacing: -0.48px;
    margin: 0;
    text-align: center;
}

.kju-master-kr {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 28px;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.56px;
}

.kju-master-field {
    font-weight: 500;
}

.kju-master-name {
    font-weight: 700;
}

.kju-news-item {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-decoration: none;
}

.kju-news-image {
    width: 100%;
    height: 270px;
    border-radius: 24px;
    overflow: hidden;
}

.kju-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kju-news-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.kju-news-date {
    font-size: 20px;
    font-weight: 500;
    color: #282828;
    opacity: 0.6;
    line-height: 1.5;
    letter-spacing: -0.4px;
}

.kju-news-title {
    font-size: 28px;
    font-weight: 700;
    color: #282828;
    line-height: 1.5;
    letter-spacing: -0.56px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

/* 학부소개 */
.main-departments {
    padding: 80px 100px;
    background: #f0f8dd;
}

.departments-grid {
    display: flex;
    gap: 20px;
    height: 300px;
}

.department-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: #fff;
    border-radius: 20px;
    text-decoration: none;
}

.department-icon {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.department-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.department-name {
    font-size: 32px;
    font-weight: 700;
    color: #282828;
    line-height: 28px;
    letter-spacing: -0.64px;
    text-align: center;
}

/* 캠퍼스라이프 */
.main-campus-life {
    padding: 80px 100px;
    display: flex;
    flex-direction: column;
}

.campus-life-body {
    display: flex;
    gap: 20px;
    align-items: stretch;
}

.campus-life-left {
    width: 596px;
}

.campus-magazine {
    position: relative;
    width: 100%;
    height: 514px;
    background: #f9f9f9;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    overflow: hidden;
}

.magazine-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.magazine-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.magazine-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.magazine-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(to bottom, transparent, black);
    padding: 40px;
    margin: -40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.magazine-badge {
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 10px 24px;
    width: fit-content;
}

.magazine-badge span {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.48px;
}

.magazine-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: -0.72px;
}

.campus-life-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.campus-life-top {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: stretch;
}

.campus-life-bottom {
    display: flex;
    gap: 20px;
    flex: 1;
    align-items: stretch;
}

.campus-life-item {
    flex: 1;
    background: #f9f9f9;
    border: 1px solid #dde0e2;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 250px;
    height: 100%;
}

.campus-life-item.counseling {
    background: #002b46;
    border: none;
    background-image: url(/home/image/main/campus_counseling_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    gap: 27px;
}

.campus-life-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.campus-life-header .btn-nav {
    border: none;
    background: transparent;
    padding: 0;
}

.campus-life-header .btn-nav img {
    width: 40px;
    height: 40px;
    display: block;
}

.campus-life-title {
    font-size: 32px;
    font-weight: 700;
    color: #282828;
    line-height: 28px;
    letter-spacing: -0.64px;
}

.campus-life-item.counseling .campus-life-title {
    color: #fff;
}

.campus-life-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.campus-life-link {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

.campus-life-link p {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #535c5f;
    line-height: 28px;
    letter-spacing: -0.36px;
}

.campus-life-link img {
    width: 24px;
    height: 24px;
}

.campus-life-menu {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
}

.campus-life-menu p {
    font-size: 20px;
    font-weight: 600;
    color: #535c5f;
    line-height: 28px;
    letter-spacing: -0.4px;
}

.campus-life-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.campus-life-info-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.campus-life-info-label {
    display: flex;
    gap: 6px;
    align-items: center;
    min-width: 100px;
}

.campus-life-info-label img {
    width: 24px;
    height: 24px;
}

.campus-life-info-label span {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.36px;
}

.campus-life-info-item p {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.36px;
}

/* 군장미디어 */
.main-media {
    padding: 80px 100px;
    background: linear-gradient(to bottom, #4f7000, #131b00);
    position: relative;
    overflow: hidden;
}

.main-media::before {
    content: '';
    position: absolute;
    top: -11px;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(/home/image/main/main_media_bg.png);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 0;
}

.main-media .section-header,
.main-media .media-body {
    position: relative;
    z-index: 1;
}

.main-media .section-title {
    color: #fff;
}

.media-body {
    display: flex;
    align-items: flex-start;
}

.media-tabs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 0;
    flex: 0 0 200px;
}

.media-tab {
    padding: 12px 24px;
    border: none;
    border-radius: 40px;
    background: #334800;
    color: #aceb15;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: -0.48px;
    cursor: pointer;
    width: fit-content;
}

.media-tab.active {
    background: #fff;
    color: #4f7000;
}

.media-content {
    display: flex;
    gap: 40px;
    justify-content: flex-end;
    flex: 1;
    padding-right: 20px;
}

.media-column {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 590px;
}

.media-column:first-child {
    transform: translateY(50px);
}

.media-column:last-child {
    transform: translateY(-80px);
}

.media-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
}

.media-image {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
}

.media-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-image .btn-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 2;
}

.media-platform {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    z-index: 2;
}

.media-platform img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.media-content-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.media-category {
    font-size: 20px;
    font-weight: 500;
    color: #aceb15;
    line-height: 1.5;
    letter-spacing: -0.4px;
    opacity: 0.6;
}

.media-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    letter-spacing: -0.56px;
}

.media-date {
    font-size: 20px;
    font-weight: 500;
    color: #b0b7ba;
    line-height: 1.5;
    letter-spacing: -0.4px;
    opacity: 0.6;
}

#footer.main {
    background: #131313;
}

#footer.main .footer-bg {
    display: none;
}

/* 반응형 */
@media screen and (max-width: 1200px) {
    .main-calendar,
    .main-quicklinks,
    .main-notice-news,
    .main-kju-now,
    .main-departments,
    .main-campus-life,
    .main-media {
        padding-left: 40px;
        padding-right: 40px;
    }

    .quicklinks-grid {
        flex-wrap: wrap;
        gap: 40px;
        justify-content: center;
    }

    .quicklink-item {
        flex: 0 0 calc(25% - 30px);
    }
}

@media screen and (min-width: 1201px) and (max-width: 1600px) {
    .calendar-month span,
    .calendar-month .search-select-btn span {
        font-size: 24px;
    }

    .calendar-item-title {
        font-size: 22px;
    }

    .calendar-item-date {
        font-size: 16px;
    }

    .quicklink-text {
        font-size: 18px;
    }

    .section-tab-list-btn {
        font-size: 26px;
    }

    .notice-title {
        font-size: 18px;
    }

    .notice-date {
        font-size: 16px;
    }

    .news-banner-title,
    .kju-press-title,
    .kju-master-title,
    .campus-life-title {
        font-size: 26px;
    }

    .kju-now-card.large {
        padding: 25px 25px 30px 25px;
    }

    .kju-now-card.large .kju-now-card-title {
        font-size: 24px;
    }

    .kju-now-cards {
        flex-direction: column;
    }

    .kju-now-card.small {
        flex: unset;
        gap: 12px;
        height: unset;
        padding: 25px;
    }

    .kju-now-card-title {
        font-size: 22px;
    }

    .kju-now-number {
        font-size: 70px;
    }

    .kju-now-text {
        font-size: 26px;
    }

    .kju-now-badge p {
        font-size: 16px;
    }

    .kju-news-date {
        font-size: 18px;
    }

    .kju-news-title {
        font-size: 22px;
    }

    .kju-now-press {
        padding: 25px;
    }

    .kju-press-slide-title {
        font-size: 20px;
    }

    .kju-now-right {
        width: 400px;
    }

    .section-title {
        font-size: 40px;
    }

    .department-name {
        font-size: 28px;
    }

    .campus-life-link p {
        font-size: 16px;
    }

    .campus-life-menu {
        padding: 12px;
    }

    .campus-life-menu p {
        font-size: 16px;
    }

    .campus-life-item {
        padding: 15px;
    }

    .campus-life-info-item {
        gap: 10px;
    }

    .campus-life-info-label span,
    .campus-life-info-item p {
        font-size: 16px;
    }

	.media-column {
        max-width: 450px;
    }

    .media-content-text {
        gap: 4px;
    }

    .media-category,
    .media-date {
        font-size: 18px;
    }

    .media-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 1600px) {
    .kju-now-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .main-kju-now {
        padding: 40px 16px;
        gap: 24px;
    }

    .kju-now-body {
        flex-direction: column;
        gap: 24px;
        height: auto;
    }

    .kju-now-left {
        width: 100%;
        height: auto;
    }

    .kju-now-card.large {
        padding: 24px;
        padding-bottom: 24px;
        border-radius: 16px;
        height: auto;
    }

    .kju-now-card-title {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.4px;
        margin-bottom: 16px;
    }

    .kju-now-card-content {
        gap: 20px;
    }

    .kju-now-highlight {
        gap: 6px;
    }

    .kju-now-number {
        font-size: 64px;
        line-height: 60px;
        letter-spacing: -1.28px;
    }

    .kju-now-text {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .kju-now-subtitle {
        font-size: 15px;
        letter-spacing: -0.3px;
        white-space: normal;
    }

    .kju-now-card.large .kju-now-card-title {
        margin-bottom: 12px;
    }

    .kju-now-badge {
        padding: 12px 20px;
        border-radius: 12px;
    }

    .kju-now-badge p {
        font-size: 16px;
        letter-spacing: -0.32px;
        text-align: left;
    }

    .kju-now-logo {
        width: 100%;
        height: 88px;
        position: relative;
        margin-top: 16px;
    }

    .kju-now-cards {
        flex-direction: column;
        gap: 12px;
    }

    .kju-now-card.small {
        height: 140px;
        padding: 24px;
        gap: 12px;
        border-radius: 12px;
        display: block;
        flex: none;
    }

    .kju-now-card.small .kju-now-card-title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.4px;
        margin-bottom: 0;
    }

    .kju-now-card-subtitle {
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .kju-now-middle,
    .kju-now-right {
        width: 100%;
        gap: 32px;
        height: auto;
    }

    .kju-now-press {
        height: 240px;
        border-radius: 16px;
        padding: 24px;
    }

    .kju-now-press::before {
        right: -120px;
        bottom: -150px;
        width: 360px;
        height: 360px;
    }

    .kju-now-press::after {
        right: -200px;
        bottom: -260px;
        width: 500px;
        height: 500px;
    }

    .kju-press-title {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .kju-press-slide-title {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: -0.36px;
    }

    .kju-now-master {
        border-radius: 16px;
        padding: 24px;
    }

    .kju-master-title {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .kju-master-slide {
        flex: 0 0 70%;
    }

    .kju-master-info {
        border-radius: 24px;
        padding: 24px 0;
        gap: 8px;
    }

    .kju-master-en {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .kju-master-kr {
        font-size: 20px;
        letter-spacing: -0.4px;
        line-height: 28px;
    }

    .kju-news-item {
        gap: 24px;
    }

    .kju-news-image {
        height: unset;
        aspect-ratio: 328 / 210;
        border-radius: 12px;
    }

    .kju-news-content {
        gap: 8px;
    }

    .kju-news-date {
        font-size: 16px;
        letter-spacing: -0.32px;
    }

    .kju-news-title {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: -0.36px;
    }

    .main-media {
        padding: 40px 16px;
    }

    .main-media::before {
        top: -10.75px;
    }

    .media-body {
        flex-direction: column;
        gap: 24px;
    }

    .media-tabs {
        flex-direction: row;
        gap: 6px;
        margin-bottom: 0;
        flex-wrap: wrap;
        flex: none;
        width: 100%;
    }

    .media-tab {
        padding: 6px 20px;
        font-size: 18px;
        line-height: 30px;
        letter-spacing: -0.36px;
    }

    .media-content {
        flex-direction: column;
        gap: 24px;
        width: 100%;
        padding-right: 0;
    }

    .media-column {
        width: 100%;
        gap: 24px;
        transform: none;
    }

    .media-column:first-child,
    .media-column:last-child {
        transform: none;
    }

    .media-item {
        gap: 20px;
    }

    .media-image .btn-play {
        width: 80px;
        height: 80px;
    }

    .media-platform {
        top: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }

    .media-content-text {
        gap: 4px;
    }

    .media-category {
        font-size: 18px;
        letter-spacing: -0.36px;
    }

    .media-title {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .media-date {
        font-size: 16px;
        letter-spacing: -0.32px;
    }
}

@media screen and (max-width: 1200px) {
    #mainSection {
        padding-top: 60px;
    }

    /* 키 비주얼 */
    .main-visual {
        height: unset;
        aspect-ratio: 1920 / 900;
    }

    .main-visual-swiper .swiper-slide {
        height: unset;
    }

/* 메인 비주얼 영상 */
    .main-visual-video {
        height: 238px;
    }

    .main-visual-content {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .main-visual-content .btn-play {
        width: 80px;
        height: 80px;
    }

    .main-visual-content .btn-play img {
        width: 100%;
        height: 100%;
    }

    .main-visual-quicklinks {
        position: static;
        right: auto;
        top: auto;
        flex-direction: column;
        gap: 0;
        transform: unset;
    }

    .quicklinks-tabs {
        width: 100%;
        position: relative;
    }

    .quicklinks-tabs ul {
        width: 100%;
        display: flex;
        flex-direction: row;
    }

    .quicklinks-tabs li {
        display: block;
        flex: 1;
        position: static;
    }

    .quicklinks-tab {
        width: 100%;
        height: 56px;
        border-radius: 0;
        text-align: center;
        padding: 0 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        font-size: 14px;
    }

    .quicklinks-tabs li:first-child .quicklinks-tab,
    .quicklinks-tabs li:last-child .quicklinks-tab {
        border-radius: 0;
    }

    .quicklinks-tab::after {
        display: none;
    }

    .quicklinks-tab br {
        display: none;
    }

    .quicklinks-menu {
        position: absolute;
        top: 56px;
        left: 0;
        width: 100%;
        padding: 10px 16px;
        border-radius: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        z-index: 10;
    }

    .quicklinks-tabs li .quicklinks-menu {
        display: none;
    }

    .quicklinks-tabs li.is-open .quicklinks-menu {
        display: flex;
    }

    .quicklinks-item {
        text-align: left;
        border-radius: 0;
    }

    .quicklinks-link {
        text-align: left;
        border-radius: 0;
    }

    .quicklinks-tabs li.is-open .quicklinks-item:nth-child(2) {
        background: #ecffbe;
    }

    .quicklinks-tabs li.is-open .quicklinks-item:nth-child(2) .quicklinks-link {
        color: #334800;
    }

    /* 학사 일정 */
    .main-calendar {
        padding: 40px 16px;
    }

    .calendar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 24px;
    }

    .calendar-title-wrap {
        gap: 8px;
    }

    .calendar-icon {
        width: 35.823px;
        height: 30px;
    }

    .calendar-controls {
        width: 100%;
        align-items: center;
    }

    .calendar-month {
        gap: 10px;
    }

    .calendar-month span,
    .calendar-month .search-select-btn span {
        font-size: 20px;
        line-height: 30px;
        letter-spacing: -0.4px;
    }

    .calendar-month .search-select-options {
        min-width: 150px;
        border-radius: 16px;
    }

    .calendar-month .search-select-options button {
        padding: 8px 20px;
        font-size: 16px;
    }

    .calendar-nav {
        gap: 8px;
    }

    .calendar-nav .btn-nav {
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .calendar-nav .btn-nav img {
        width: 40px;
        height: 40px;
    }

    .btn-nav {
        width: 36px;
        height: 36px;
        padding: 6px;
    }

    .btn-nav img {
        width: 24px;
        height: 24px;
    }

    .calendar-list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        background: transparent;
        border-radius: 20px;
    }

    .calendar-item {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #dde0e2;
        padding: 16px 0;
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
    }

    .calendar-item:last-child {
        border-bottom: none;
    }

    .calendar-item-title {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: -0.36px;
    }

    .calendar-item-date {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: -0.32px;
        text-align: left;
    }

    /* 즐겨찾기/바로가기 */
    .main-quicklinks {
        padding: 32px 16px;
    }

    .quicklinks-grid {
        flex-wrap: wrap;
        gap: 40px 8px;
        justify-content: flex-start;
    }

    .quicklink-item {
        flex: 0 0 calc(25% - 9px);
        gap: 16px;
        padding-bottom: 40px;
    }

    .quicklink-icon {
        width: 64px;
        height: 64px;
        padding: 16px;
    }

    .quicklink-icon img {
        width: 32px;
        height: 32px;
    }

    .quicklink-text {
        font-size: 14px;
    }

    /* 공지사항 & 뉴스 */
    .main-notice-news {
        padding: 40px 16px;
        flex-direction: column;
        gap: 20px;
    }

    .notice-section {
        width: 100%;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 20px;
    }

    .section-tab-list {
        width: 100%;
    }

    .section-tab-list-items {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .section-tab-list-btn {
        font-size: 18px;
        padding: 10px 20px;
        white-space: nowrap;
    }

    .notice-content-wrapper {
        width: 100%;
    }

    .section-title-wrap {
        gap: 8px;
    }

    .section-icon {
        width: 35.823px;
        height: 30px;
    }

    .section-title {
        font-size: 24px;
        letter-spacing: -0.48px;
    }

    .section-controls {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .notice-list {
        gap: 12px;
    }

    .notice-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
        align-items: flex-start;
    }

    .notice-content {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        width: 100%;
    }

    .notice-badge {
        padding: 2px 10px;
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.32px;
    }

    .notice-title {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: -0.36px;
    }

    .notice-date {
        font-size: 16px;
        line-height: 1.5;
        letter-spacing: -0.32px;
    }

    .news-banner {
        width: 100%;
        height: auto;
        gap: 12px;
    }

    .news-banner-item {
        flex: unset;
        height: 140px;
        padding: 24px;
        gap: 12px;
    }

    .news-banner-title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.4px;
    }

    .news-banner-item.secondary .news-banner-title:first-of-type {
        font-weight: 500;
    }

    /* 학부소개 */
    .main-departments {
        padding: 40px 16px;
    }

    .departments-grid {
        flex-wrap: wrap;
        height: auto;
        gap: 12px;
    }

    .department-item {
        flex: 0 0 calc(50% - 6px);
        padding: 20px 24px;
        gap: 12px;
    }

    .department-item:last-child:nth-child(odd) {
        flex: 0 0 100%;
    }

    .department-icon {
        width: 60px;
        height: 60px;
    }

    .department-name {
        font-size: 18px;
        line-height: 28px;
        letter-spacing: -0.36px;
    }

    /* 캠퍼스라이프 */
    .main-campus-life {
        padding: 40px 16px;
        flex-direction: column;
        gap: 24px;
    }

    .campus-life-body {
        flex-direction: column;
        gap: 24px;
    }

    .campus-life-left {
        width: 100%;
    }

    .campus-magazine {
        height: unset;
        aspect-ratio: 328 / 280;
        padding: 24px;
        border-radius: 16px;
    }

    .magazine-content {
        padding: 20px;
        margin: -24px;
    }

    .magazine-badge {
        padding: 6px 20px;
    }

    .magazine-badge span {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.32px;
    }

    .magazine-title {
        font-size: 20px;
        letter-spacing: -0.4px;
    }

    .campus-life-right {
        width: 100%;
        height: auto;
    }

    .campus-life-top,
    .campus-life-bottom {
        flex-direction: column;
        gap: 20px;
        flex: none;
    }

    .campus-life-item {
        padding: 20px;
        gap: 24px;
        border-radius: 16px;
        height: auto;
    }

    .campus-life-title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.4px;
    }

    .campus-life-list {
        gap: 16px;
    }

    .campus-life-link {
        gap: 24px;
    }

    .campus-life-link p {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.32px;
    }

    .campus-life-menu {
        padding: 16px 20px;
        border-radius: 14px;
    }

    .campus-life-menu p {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.32px;
    }

    .campus-life-info {
        gap: 8px;
    }

    .campus-life-info-item {
        gap: 24px;
    }

    .campus-life-info-label {
        min-width: 80px;
        gap: 6px;
    }

    .campus-life-info-label img {
        width: 24px;
        height: 24px;
    }

    .campus-life-info-label span {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.32px;
    }

    .campus-life-info-item p {
        font-size: 16px;
        line-height: 28px;
        letter-spacing: -0.32px;
    }
}
