/* Main Slider */
.main-slider {
    position: relative;
    height: 667px;
    overflow: hidden;
}

.slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-content {
    position: absolute;
    left: 253px;
    transform: translateY(-50%);
    z-index: 1;
    color: #fff;
}

.slider-content .main-title {
    position: relative;
    width: 867px;
    font-family: 'Elice DigitalBaeum OTF', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 56px;
    line-height: 72px;
    letter-spacing: -0.05em;
    color: #FFFFFF;
    margin: 0;
}

.slider-content .blue-highlight {
    background: #3270AA;
    padding: 0px 10px 5px 10px;
    display: inline-block;
}

.slider-content .green-highlight {
    background: #BABD42;
    padding: 0px 10px 5px 10px;
    display: inline-block;
}

.slider-content .orange-highlight {
    background: #E48841;
    padding: 0px 10px 5px 10px;
    display: inline-block;
}

.slider-content .sub-title {
    position: absolute;
    width: 1097px;
    top: 163px;
    font-family: 'Pretendard', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 180%;
    letter-spacing: -0.05em;
    color: #CCCCCC;
    margin: 0;
}

.slider-dots {
    position: absolute;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #fff;
    border-color: #fff;
}

/* Content Sections */
.content-sections-wrapper {
    max-width: 1680px;
    margin: 60px auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

/* 공지사항 Section */
.home-section {
    box-sizing: border-box;
    width: 544px;
    height: 100%;
    border: 1px solid #D9D9D9;
    border-radius: 20px;
    background: #FFFFFF;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 30px 0 30px;
    height: 73px;
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 28px;
    line-height: 33px;
    color: rgba(39, 39, 39, 0.8);
    margin: 0;
}

/* More Link */
.more-link-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
}

.more-link-text {
    font-family: 'Pretendard', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #272727;
}

.more-link-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.more-link-wrapper:hover .more-link-text {
    color: #3270AA;
}

.more-link-wrapper:hover .more-link-icon path {
    stroke: #3270AA;
}

/* Section List */
.section-list {
    padding: 0 30px;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* List Items */
.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 61px;
    border-top: 1px solid #C3C6D0;
    padding: 20px 0;
}

.list-item:first-child {
    border-top: none;
}

.item-title {
    flex: 1;
    max-width: 363px;
    font-family: 'Pretendard', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    color: #272727;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.item-title:hover {
    color: #3270AA;
    text-decoration: underline;
}

.item-date {
    min-width: 87px;
    font-family: 'Pretendard', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 19px;
    text-align: right;
    color: #888888;
    margin-left: 10px;
}
