.college-container_105 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    /* 좌우 최소 40px */
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.college-card_105 {
    border-bottom: 1px dashed #ccc;
    padding-bottom: 30px;
    content-visibility: auto;
    contain-intrinsic-size: 420px;
}

.college-header_105 h2 a {
    font-size: 1.4rem;
    color: #006400;
    text-decoration: none;
}

.college-body_105 {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.college-body_105 img {
    width: 240px;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 4px;
    height: auto;
}

.college-body_105 p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.5;
}

.college-departments_105 ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.college-departments_105 li a {
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
}

.college-departments_105 li a:hover {
    color: #006400;
}

/* 1024px 이하 */
@media (max-width: 1024px) {
    .college-container_105 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .college-body_105 {
        flex-direction: row;
    }

    .college-body_105 img {
        width: 200px;
    }
}

/* 768px 이하 */
@media (max-width: 768px) {
    .college-body_105 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .college-body_105 img {
        width: 100%;
        max-width: 300px;
    }

    .college-departments_105 ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 700px 이하 */
@media (max-width: 700px) {
    .college-header_105 h2 a {
        font-size: 1.2rem;
    }

    .college-body_105 p {
        font-size: 0.9rem;
    }

    .college-departments_105 li a {
        font-size: 0.85rem;
    }
}

/* 400px 이하 */
@media (max-width: 400px) {
    .college-body_105 img {
        max-width: 100%;
    }

    .college-departments_105 ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .college-header_105 h2 a {
        font-size: 8vw;
    }
}


/* CTA 섹션 */
.cta {
    background: #006400;
    padding: 70px 20px;
    text-align: center;
    color: #fff;
}

.cta .inner {
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.cta p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.5;
}

/* 버튼 그룹 */
.cta .btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

/* 기본 버튼 */
.cta .btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    font-weight: bold;
    box-sizing: border-box;
}

/* 초록 버튼 */
.cta .btn.green {
    background: #fff;
    color: #006400;
}

.cta .btn.green:hover {
    background: #e6e6e6;
}

/* 아웃라인 버튼 */
.cta .btn.outline {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.cta .btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 반응형 */
@media (max-width: 768px) {
    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .cta .btn {
        min-width: 150px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta h2 {
        font-size: 1.5rem;
    }

    .cta p {
        font-size: 0.9rem;
    }

    .cta .btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .cta .btn {
        width: 100%;
        max-width: 260px;
        min-width: auto;
        font-size: 0.9rem;
        padding: 10px 16px;
        margin: 0 auto;
    }
}