* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #fff;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;
    /* margin: 0 auto; */
    padding-left: 24px;
    padding-right: 24px;
}
.main{
	min-height: 600px;
	
}
/* about페이지 공통 디자인 */
.info-feature {
    display: grid;
    grid-template-columns: minmax(0, 620px) minmax(320px, 420px);
    justify-content: center;
    align-items: center;
    gap: 42px;
}

.info-visual {
    width: 100%;
    max-width: 620px;
    border-radius: 28px;
    overflow: hidden;
}

.info-visual img,
.info-visual iframe {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
    border: 0;
}

.info-panel {
    width: 100%;
    max-width: 400px;
}
.section-page{
	padding: 50px 0 110px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 22px;
    color: #111;
    letter-spacing: -0.04em;
}

.section-desc {
    margin: 0 0 26px;
    font-size: 17px;
    line-height: 1.9;
    color: #666;
    word-break: keep-all;
}

.section-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.section-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.section-item::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-top: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}


/* 색 */
.section-list--coding .section-item::before {
  background: #8eb8ff;
}

/* 색 */
.section-list--english .section-item::before
.section-list--math .section-item::before {
  background: #f3a0b5;
}
.section-item-title {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
}

.action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.action-btn.primary {
    background: #2f6df6;
    color: #fff;
}

.action-btn.secondary {
    background: #fff;
    color: #2f6df6;
    border: 1px solid #cfe0ff;
}

.notice-text {
  margin-top: 34px;
  text-align: center;
  color: #888;
  font-size: 16px;
  line-height: 1.7;
}
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}
@media (max-width: 1024px) {
    .info-feature {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .info-visual,
    .info-panel {
        max-width: 100%;
    }

    .section-title {
        font-size: 40px;
    }
}

@media (max-width: 640px) {
    .info-visual img,
    .info-visual iframe {
        height: 240px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section-item-title {
        font-size: 16px;
    }

    .action-row {
        flex-direction: column;
    }

    .action-btn {
        width: 100%;
    }
    .notice-text {
    margin-top: 22px;
    font-size: 13px;
    line-height: 1.6;
    text-align: left;
  }
}
