/* intro.css 배포일:2026.03.03 01:49:18 */ 
@charset "utf-8";

.intro-content {
    padding: 20px 30px 150px;
    font-size: 16px;
}

.intro-content .mission-box {
    position: relative;
    min-height: 230px;
    margin-bottom: 60px;
    padding: 50px 120px;
    background: #01375A;
    border-radius: 20px;
    text-align: center;
    overflow: hidden;
}

.intro-content .mission-box::before,
.intro-content .mission-box::after {
    content: '';
    position: absolute;
    width: 206px;
    aspect-ratio: 206 / 164;
    background: url('/home/image/common/img_missionbox_deco.png') no-repeat center / contain;
    opacity: 0.3;
}

.intro-content .mission-box::before {
    top: -65px;
    right: 30px;
}

.intro-content .mission-box::after {
    bottom: -30px;
    left: 30px;
}

.intro-content .mission-box .mission-title {
    position: relative;
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    z-index: 1;
}

.intro-content .mission-box .mission-text {
    position: relative;
    font-size: 18px;
    color: #fff;
    z-index: 1;
}

.intro-content .mission-box.ethics ul.mission-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    font-size: 18px;
    word-break: keep-all;
}

.intro-content .mission-box.ethics ul.mission-text li ul {
    gap: 5px;
    text-align: left;
}

.intro-content .mission-box.ethics ul.mission-text li ul li {
    list-style-type: disc;
}

.intro-content > ol,
.intro-content > ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.intro-content .ethics-list {
    gap: 25px;
}

.intro-content .ethics-list .ethics-item {
    padding: 40px;
    border: 1px solid #BABABA;
    border-radius: 20px;
}

.intro-content .ethics-list .ethics-title {
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.intro-content .ethics-list .ethics-content {
    padding-left: 25px;
    font-size: 16px;
    color: #000;
    word-break: keep-all;
}

.intro-content .ethics-list .ethics-content li {
    padding-left: 10px;
    list-style: decimal;
    line-height: 150%;
}

.professor-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.professor-list .professor-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    border: 2px solid #D9D9D9;
    border-radius: 20px;
    transition: border-color 0.2s;
}

.professor-list .professor-thumb {
    flex-shrink: 0;
    width: 268px;
    max-height: 330px;
    aspect-ratio: 268 / 320;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    overflow: hidden;
}

.professor-list .professor-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.professor-list .professor-info {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 15px;
    flex: 1;
}

.professor-list .professor-name {
    position: relative;
    padding-bottom: 15px;
    font-size: 30px;
    font-weight: 600;
    color: #01375A;
}

.professor-list .professor-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 41px;
    height: 2px;
    background: #01375A;
}

.professor-list .professor-position {
    margin-top: 20px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.professor-list .professor-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.professor-list .professor-detail li {
    display: flex;
    gap: 15px;
    font-size: 16px;
    color: #000;
}

.professor-list .professor-detail li strong {
    width: 80px;
    flex-shrink: 0;
}

.professor-list .professor-detail li.vertical {
    flex-direction: column;
    gap: 10px;
}

.professor-list .professor-detail li.vertical ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.professor-list .professor-detail li.vertical ul li {
    display: list-item;
    font-size: 12px;
}


@media screen and (max-width: 1200px) {
    .professor-list {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 25px 0;
    }

    .professor-list .professor-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px;
    }

    .professor-list .professor-thumb {
        width: 50%;
        max-height: none;
    }

    .professor-list .professor-info {
        align-self: stretch;
        gap: 10px;
    }

    .professor-list .professor-name {
        font-size: 22px;
        padding-bottom: 10px;
    }

    .professor-list .professor-name::after {
        width: 30px;
    }

    .professor-list .professor-position {
        margin-top: 10px;
        font-size: 15px;
    }

    .professor-list .professor-detail {
        gap: 10px;
    }

    .professor-list .professor-detail li {
        font-size: 13px;
    }

    .professor-list .professor-detail li strong {
        width: 50px;
    }
}

@media screen and (max-width: 750px) {
    .intro-content {
        padding: 40px 0 100px;
    }

    .intro-content .mission-box {
        min-height: 180px;
        padding: 30px 40px;
    }

    .intro-content .mission-box::before,
    .intro-content .mission-box::after {
        width: 120px;
        height: 96px;
    }

    .intro-content .mission-box::before {
        top: 10px;
        right: 10px;
    }

    .intro-content .mission-box::after {
        bottom: 10px;
        left: 10px;
    }

    .intro-content .mission-box .mission-title {
        font-size: 20px;
    }

    .intro-content .mission-box .mission-text ul {
        margin-inline-start: 20px;
    }

    .intro-content .mission-box .mission-text,
    .intro-content .mission-box .mission-text li {
        font-size: 16px;
    }

    .intro-content .ethics-list .ethics-item {
        padding: 25px 20px;
    }

    .intro-content .ethics-list .ethics-title {
        font-size: 20px;
    }

    .intro-content .ethics-list .ethics-content {
        font-size: 16px;
    }
}

.vision-content {
    padding: 60px 0 200px;
}

.vision-title {
    margin-bottom: 60px;
    font-size: 46px;
    font-weight: 700;
    color: #89C200;
    text-align: center;
}

.vision-section {
    display: flex;
    align-items: stretch;
    gap: 30px;
    padding: 40px 0;
}

.vision-label {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 250px;
    font-size: 26px;
    font-weight: 600;
    color: #000;
    text-align: center;
    line-height: 1.4;
}

.vision-box {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border: 1px solid #89C200;
    border-radius: 20px;
}

.vision-box p {
    font-size: 26px;
    font-weight: 600;
    color: #000;
    text-align: center;
}

.vision-goals {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.vision-goals li {
    flex: 1 1 calc(25% - 12px);
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110px;
    padding: 25px 30px;
    border: 1px solid #89C200;
    border-radius: 20px;
    text-align: center;
}

.vision-goals li strong {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

.vision-strategy {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.vision-strategy img {
    max-width: 444px;
    width: 100%;
    height: auto;
}

.vision-tasks {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vision-task-row {
    display: flex;
    gap: 20px;
}

.vision-task-item {
    flex: 1;
    padding: 30px;
    border: 1px solid #89C200;
    border-radius: 20px;
}

.vision-task-item .task-title {
    display: block;
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 700;
    color: #000;
    text-align: center;
    line-height: 1.4;
}

.vision-task-item .task-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
    margin: 0 auto;
    padding-left: 15px;
}

.vision-task-item .task-list li {
    font-size: 16px;
    list-style: disc;
}

@media screen and (max-width: 1200px) {
    .vision-goals li {
        flex: 1 1 calc(50% - 8px);
    }

    .vision-task-row {
        flex-wrap: wrap;
    }

    .vision-task-item {
        flex: 1 1 calc(50% - 10px);
    }
}

@media screen and (max-width: 750px) {
    .vision-content {
        padding: 30px 0 100px;
    }

    .vision-title {
        margin-bottom: 30px;
        font-size: 28px;
    }

    .vision-section {
        flex-direction: column;
        gap: 20px;
        padding: 25px 0;
    }

    .vision-label {
        width: 100%;
        justify-content: flex-start;
        font-size: 22px;
    }

    .vision-label br {
        display: none;
    }

    .vision-box p {
        font-size: 18px;
    }

    .vision-goals li {
        flex: 1 1 100%;
        height: auto;
        min-height: 90px;
        padding: 20px;
    }

    .vision-goals li strong {
        font-size: 16px;
    }

    .vision-task-item {
        flex: 1 1 100%;
        padding: 20px;
    }

    .vision-task-item .task-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .vision-task-item .task-list li {
        font-size: 13px;
    }
}

/* ========================================
   이사장 인사말 / 설립자 소개
======================================== */
.chairman-hero {
    position: relative;
    margin-top: 30px;
    padding: 60px 20px 80px;
    background: url('/home/image/common/img_pattern_bg.svg') no-repeat center / cover;
    text-align: center;
}

.chairman-hero-title {
    margin-bottom: 40px;
    font-size: 36px;
    font-weight: 700;
    color: #173557;
    letter-spacing: -1.44px;
}

.chairman-hero-title .text-blue {
    color: #0064A2 !important;
}

.chairman-hero-text {
    font-size: 20px;
    color: #173557;
    letter-spacing: -0.8px;
}

.chairman-hero-sign {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    font-family: 'Ownglyph', sans-serif;
}

.chairman-hero-sign .sign-position {
    font-size: 24px;
    color: #173557;
    letter-spacing: -0.96px;
}

.chairman-hero-sign .sign-name {
    font-size: 40px;
    color: #0064A2;
    letter-spacing: -1.6px;
}

.chairman-body {
    display: flex;
    gap: 130px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0 150px;
}

.chairman-profile-card {
    flex-shrink: 0;
    width: 390px;
}

.chairman-profile-card .profile-photo {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.chairman-profile-card .profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chairman-profile-card .profile-info {
    padding: 30px 28px;
    background: #F6FAFE;
}

.chairman-profile-card .profile-position {
    font-size: 24px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.96px;
}

.chairman-profile-card .profile-name {
    margin-top: 12px;
    font-size: 36px;
    font-weight: 700;
    color: #173557;
    letter-spacing: -1.44px;
}

.chairman-profile-card.founder .profile-degree {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 500;
    color: #173557;
    letter-spacing: -0.8px;
}

.chairman-profile-card.founder .profile-desc {
    margin-top: 25px;
    font-size: 20px;
    color: #222;
    letter-spacing: -0.8px;
}

.chairman-content {
    flex: 1;
    min-width: 0;
}

.chairman-content .chairman-message {
    font-size: 20px;
    color: #222;
    letter-spacing: -0.8px;
    word-break: keep-all;
}

.chairman-content .chairman-message p + p {
    margin-top: 32px;
}

.chairman-section-title {
    margin-bottom: 24px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.96px;
}

.chairman-education {
    margin-top: 80px;
}

.chairman-education .tbl-basic tbody tr td {
    text-align: left;
}

.chairman-school {
    margin-top: 80px;
}

.chairman-school-list {
    display: flex;
    gap: 40px;
    padding: 28px;
    border: 1px solid #CCC;
    border-radius: 24px;
}

.chairman-school-list .school-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #222;
    letter-spacing: -0.72px;
    transition: color 0.2s;
}

.chairman-school-list .school-item img {
    width: 24px;
    height: 24px;
}

.tbl-basic.executive-status tbody tr td {
    text-align: center;
}

.tbl-basic.executive-status tbody tr td:nth-child(5) {
    text-align: left;
}

@media screen and (max-width: 1250px) and (min-width: 751px) {
    .chairman-body {
        gap: 60px;
        padding: 60px 30px 100px;
    }

    .chairman-profile-card {
        width: 300px;
    }

    .chairman-profile-card .profile-photo {
        height: 370px;
    }

    .chairman-school-list {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media screen and (max-width: 750px) {
    .chairman-hero {
        padding: 40px 20px 50px;
    }

    .chairman-hero-title {
        margin-bottom: 24px;
        font-size: 22px;
    }

    .chairman-hero-text {
        font-size: 14px;
    }

    .chairman-hero-sign {
        gap: 12px;
        margin-top: 24px;
    }

    .chairman-hero-sign .sign-position {
        font-size: 16px;
    }

    .chairman-hero-sign .sign-name {
        font-size: 26px;
    }

    .chairman-body {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px 80px;
    }

    .chairman-profile-card {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .chairman-profile-card .profile-photo {
        height: auto;
        aspect-ratio: 39 / 48;
    }

    .chairman-profile-card .profile-info {
        padding: 20px;
    }

    .chairman-profile-card .profile-position {
        font-size: 16px;
    }

    .chairman-profile-card .profile-name {
        font-size: 24px;
    }

    .chairman-content .chairman-message {
        font-size: 16px;
    }

    .chairman-content .chairman-message p + p {
        margin-top: 20px;
    }

    .chairman-section-title {
        margin-bottom: 16px;
        font-size: 18px;
    }

    .chairman-education {
        margin-top: 40px;
    }

    .chairman-school {
        margin-top: 40px;
    }

    .chairman-school-list {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        border-radius: 16px;
    }

    .chairman-school-list .school-item {
        font-size: 15px;
    }

    .chairman-profile-card.founder .profile-info {
        height: auto;
    }

    .chairman-profile-card.founder .profile-degree {
        font-size: 16px;
    }

    .chairman-profile-card.founder .profile-desc {
        margin-top: 30px;
        font-size: 16px;
    }
}

/* ========================================
   연혁
======================================== */
.history-intro {
    display: flex;
    margin: 60px 0 100px;
}

.history-intro-photo {
    flex-shrink: 0;
    width: 546px;
}

.history-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.history-intro-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 60px;
    overflow: hidden;
}

.history-intro-content .bg-pattern {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    width: 120%;
    height: 150%;
    object-fit: fill;
    z-index: 0;
}

.history-intro-title {
    position: relative;
    z-index: 1;
    font-size: 32px;
    font-weight: 700;
    color: #173557;
    letter-spacing: -1.28px;
    line-height: 1.4;
}

.history-intro-text {
    position: relative;
    z-index: 1;
    margin-top: 24px;
    font-size: 20px;
    color: #222;
    letter-spacing: -0.8px;
    line-height: 1.6;
}

@media screen and (max-width: 1400px) {
    .history-intro-photo {
        width: 400px;
    }

    .history-intro-content {
        padding: 30px 40px;
    }

    .history-intro-title {
        font-size: 26px;
    }

    .history-intro-title br,
    .history-intro-text br {
        display: none;
    }

    .history-intro-text {
        font-size: 18px;
    }
}

@media screen and (max-width: 1250px) {
    .history-intro {
        flex-direction: column;
        margin-top: 40px;
    }

    .history-intro-photo {
        width: 100%;
        height: 300px;
    }

    .history-intro-content {
        padding: 40px 20px;
    }

    .history-intro-title {
        font-size: 24px;
    }

    .history-intro-text {
        font-size: 16px;
    }
}

@media screen and (max-width: 750px) {
    .history-intro-photo {
        height: 200px;
    }

    .history-intro-content {
        padding: 30px 20px;
    }

    .history-intro-title {
        font-size: 18px;
    }

    .history-intro-text {
        margin-top: 16px;
        font-size: 14px;
    }
}

.history-panel {
    display: none;
    flex-direction: column;
}

.history-panel.active {
    display: flex;
    padding: 50px 0 200px;
}

.history-section {
    display: flex;
    flex-direction: column;
    margin-bottom: 100px;
}

.history-section:last-of-type {
    margin-bottom: unset;
}

.history-content .sub-list {
    margin-top: 0;
    text-align: left;
}

.history-content .tbl-basic tr td:nth-last-of-type(2) {
    text-align: center;
}

@media screen and (max-width: 750px) {
    .history-panel.active {
        padding: 25px 0 100px;
    }

    .history-section {
        gap: 16px;
        
    }

    .history-panel .tbl-basic th {
        width: 100px;
    }

    .history-panel .tbl-basic td:nth-child(1),
    .history-panel .tbl-basic td:first-child {
        width: auto;
    }
}

/* ========================================
   정보공개
======================================== */
.disclosure-panel {
    display: none;
}

.disclosure-panel.active {
    display: block;
    padding-bottom: 150px;
}

.disclosure-panel .section-intro:last-of-type {
    border-bottom: none;
}

.disclosure-panel .download-box {
    margin-top: 40px;
}

@media screen and (max-width: 750px) {
    .disclosure-panel.active {
        padding: 25px 0 60px;
    }

    .disclosure-panel .section-intro {
        padding: 25px 0;
    }

    .disclosure-panel .section-intro-desc {
        margin-top: 12px;
        font-size: 14px;
    }
}

/* ========================================
   로고/UI
======================================== */
.logo-ui-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding: 50px 0 200px;
}

.logo-section-body {
    display: flex;
    gap: 90px;
    margin-top: 24px;
}

.logo-section-image {
    flex-shrink: 0;
    width: 510px;
}

.logo-section-image img {
    width: 100%;
    height: auto;
}

.logo-section-image.full {
    width: 100%;
    margin-top: 24px;
}

.logo-section-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.logo-desc-title {
    font-size: 32px;
    font-weight: 700;
    color: #01375A;
    letter-spacing: -1.28px;
    line-height: 1.4;
}

.logo-desc-text {
    margin-top: 40px;
    font-size: 20px;
    color: #222;
    letter-spacing: -0.4px;
    line-height: 1.5;
}

.logo-btn-wrap {
    display: flex;
    gap: 20px;
    margin-top: 60px;
}

.logo-sub-label {
    font-size: 18px;
    font-weight: 700;
    color: #173557;
    letter-spacing: -0.36px;
    margin-bottom: 16px;
}

.logo-color-wrap {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.logo-color-label {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    letter-spacing: -0.36px;
    margin-bottom: 12px;
    color: #173557;
}

.logo-color-box {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.logo-color-box.main-color {
    background: #173557;
}

.logo-color-box.sub-color-green {
    background: #94C22F;
}

.logo-color-box.sub-color-mint {
    background: #6BCABA;
}

.logo-color-name {
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
    letter-spacing: -0.56px;
}

.logo-color-value {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.6;
    letter-spacing: -0.56px;
}

.logo-color-sub {
    display: flex;
    gap: 20px;
}

.logo-color-sub .logo-color-box {
    flex: 1;
}

.tbl-cols .logo-section-image.full {
    margin-top: 0;
}

@media screen and (max-width: 1200px) {
    .logo-section-body {
        flex-direction: column;
        gap: 40px;
    }

    .logo-section-image {
        width: 100%;
    }

    .logo-desc-title {
        font-size: 26px;
    }

    .logo-desc-text {
        margin-top: 24px;
        font-size: 18px;
    }

    .logo-btn-wrap {
        margin-top: 40px;
    }

    .logo-color-sub {
        gap: 12px;
    }
}

@media screen and (max-width: 750px) {
    .logo-ui-content {
        gap: 60px;
        padding: 30px 0 100px;
    }

    .logo-section-body {
        gap: 30px;
        margin-top: 20px;
    }

    .logo-section-image.full {
        margin-top: 20px;
    }

    .logo-desc-title {
        font-size: 20px;
    }

    .logo-desc-text {
        margin-top: 16px;
        font-size: 16px;
    }

    .logo-btn-wrap {
        flex-direction: column;
        gap: 12px;
        margin-top: 30px;
    }

    .logo-btn-wrap .btn-gradient {
        width: 100%;
        text-align: center;
    }

    .logo-sub-label {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .logo-color-wrap {
        margin-top: 20px;
        gap: 20px;
    }

    .logo-color-label {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .logo-color-sub {
        flex-direction: column;
        gap: 10px;
    }

    .logo-ui-content .tbl-cols .logo-section-image.full {
        margin-top: 12px;
    }
}

/* ========================================
   캠퍼스 안내
======================================== */
.campus-content {
    padding: 30px 0 200px;
}

.campus-intro-text {
    font-size: 18px;
    color: #222;
    letter-spacing: -0.72px;
}

.campus-vr-wrap {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.campus-vr-card {
    position: relative;
    flex: 1;
    display: block;
    border-radius: 20px;
    overflow: hidden;
}

.campus-vr-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campus-vr-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.campus-vr-card:hover .overlay {
    opacity: 1;
}

.campus-vr-card.korean .overlay {
    background-color: rgba(1, 55, 90, 0.6);
}

.campus-vr-card.english .overlay {
    background-color: rgba(102, 136, 19, 0.6);
}

.campus-vr-card .overlay-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -1.28px;
}

.campus-vr-card .overlay-sub {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.96px;
}

.campus-map {
    margin-top: 60px;
}

.campus-map img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

@media screen and (max-width: 1200px) {
    .campus-vr-wrap {
        gap: 20px;
    }

    .campus-vr-card .overlay-title {
        font-size: 26px;
    }

    .campus-vr-card .overlay-sub {
        font-size: 20px;
    }
}

@media screen and (max-width: 750px) {
    .campus-content {
        padding: 20px 0 100px;
    }

    .campus-intro-text {
        font-size: 14px;
    }

    .campus-vr-wrap {
        flex-direction: column;
        gap: 16px;
        margin-top: 24px;
    }

    .campus-vr-card .overlay-title {
        font-size: 22px;
    }

    .campus-vr-card .overlay-sub {
        font-size: 16px;
    }

    .campus-map {
        margin-top: 40px;
    }

    .campus-map img {
        border-radius: 12px;
    }
}

/* ========================================
   지표현황관리 테이블
======================================== */
.tbl-indicator th,
.tbl-indicator td {
    height: 80px;
    text-align: center;
}

.tbl-indicator thead th {
    height: 58px;
}

.tbl-indicator tbody th {
    font-weight: 700;
}

@media screen and (max-width: 750px) {
    .tbl-indicator th,
    .tbl-indicator td {
        height: 60px;
    }

    .tbl-indicator thead th {
        height: 50px;
    }
}

/* ========================================
   찾아오시는 길
======================================== */
.directions-content {
    padding: 25px 0 150px;
}

.directions-map {
    border-radius: 20px;
    overflow: hidden;
}

.directions-map img {
    width: 100%;
    height: auto;
    display: block;
}

.directions-content .tbl-wrap {
    margin-top: 40px;
}


.directions-tbl td strong {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
}

.directions-tbl .bus-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-left: 30px;
}

.directions-tbl .bus-list li {
    list-style: disc;
}

@media screen and (max-width: 750px) {
    .directions-content {
        padding: 30px 0 100px;
    }

    .directions-map {
        border-radius: 12px;
    }

    .directions-content .tbl-wrap {
        margin-top: 24px;
    }
}

/* ========================================
   조직도 템플릿
======================================== */
.org-template-content {
    padding-bottom: 150px;
}

.org-section {
    margin-top: 60px;
}

.org-section .sub-section-title {
    margin-bottom: 24px;
}

.org-section .tbl-basic td {
    text-align: center;
}

.org-section .tbl-basic td a {
    color: #222;
}

.org-section .tbl-basic td a:hover {
    text-decoration: underline;
    color: #000;
}

@media screen and (max-width: 750px) {
    .org-template-content {
        padding: 30px 0 100px;
    }

    .org-section {
        margin-top: 40px;
    }

    .org-section .sub-section-title {
        margin-bottom: 16px;
    }
}

/* ========================================
   발전기금 소개
======================================== */
.fund-content {
    padding: 60px 0 150px;
}

.fund-section {
    padding-bottom: 60px;
}

.fund-section + .fund-section {
    padding-top: 60px;
}

.fund-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.fund-section-body {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.fund-section-body .section-intro-tasks {
    margin-top: 0;
}

.fund-step-img {
    margin-top: 10px;
}

.fund-step-img img {
    width: 100%;
}

@media screen and (max-width: 750px) {
    .fund-content {
        padding: 40px 0 100px;
    }

    .fund-section {
        padding-bottom: 40px;
    }

    .fund-section + .fund-section {
        padding-top: 40px;
    }

    .fund-section .sub-section-title {
        margin-bottom: 20px;
    }

    .fund-section-body {
        gap: 30px;
    }
}