

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
    font-family: Pretendard, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #121826;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 80px 24px 50px;
    text-align: center;
}

.title {
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 18px;
}

.sub-title {
    font-size: 20px;
    font-weight: 400;
    color: #6b7280;
    margin-bottom: 70px;
}

.academy-wrap {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 44px;
}

.academy-card {
    width: 460px;
    min-height: 560px;
    padding: 54px 48px 46px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.academy-card:hover {
    transform: translateY(-10px);
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 24px 56px rgba(15, 23, 42, 0.14);
}

.academy-logo {
    width: 250px;
    height: 190px;
    object-fit: contain;
    margin-bottom: 42px;
}

.academy-card h2 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.academy-card p {
    font-size: 18px;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 44px;
}

.move-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    height: 64px;
    padding: 0 34px;
    border-radius: 10px;
    background: #10295f;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.4px;
    box-shadow: 0 10px 24px rgba(16, 41, 95, 0.22);
    transition: background 0.25s ease, transform 0.25s ease;
}

.academy-card:hover .move-btn {
    background: #1d4ed8;
    transform: translateX(4px);
}

@media (max-width: 980px) {
    .container {
        padding-top: 60px;
    }

    .title {
        font-size: 36px;
    }

    .sub-title {
        font-size: 18px;
        margin-bottom: 48px;
    }

    .academy-wrap {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .academy-card {
        width: 100%;
        max-width: 460px;
        min-height: auto;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 48px 18px 36px;
    }

    .title {
        font-size: 30px;
        line-height: 1.3;
    }

    .sub-title {
        font-size: 16px;
    }

    .academy-card {
        padding: 38px 24px 34px;
        border-radius: 20px;
    }

    .academy-logo {
        width: 200px;
        height: 150px;
        margin-bottom: 32px;
    }

    .academy-card h2 {
        font-size: 28px;
    }

    .academy-card p {
        font-size: 16px;
        margin-bottom: 34px;
    }

    .move-btn {
        width: 100%;
        min-width: 0;
        height: 58px;
        font-size: 18px;
    }
}