/* 슬라이드 9: 미래 확장 로드맵 레이아웃 (이미지 영역 추가) */
.roadmap-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background-color: #FAFAFA;
    font-family: 'Noto Sans KR', sans-serif;
}

.roadmap-grid {
    display: flex;
    width: 100%;
    max-width: 1280px;
    gap: 25px;
    justify-content: center;
    align-items: stretch; /* 카드 높이 통일 */
    padding: 0 40px;
}

.roadmap-card {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    text-align: left;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden; /* 이미지가 상단 모서리를 넘지 않도록 설정 */
}

.roadmap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.1);
}

/* 상단 이미지 영역 */
.roadmap-media {
    width: 100%;
    height: 300px; /* 로드맵을 상징하는 이미지 높이 */
    background-color: #F2F2F2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    color: #999999;
    border-bottom: 1px solid #F0F0F0;
}

.roadmap-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 카드 하단 텍스트 영역 */
.roadmap-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.roadmap-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.roadmap-subtitle {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #333333 !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

.roadmap-text {
    font-size: 0.95rem !important;
    line-height: 1.65 !important;
    color: #666666;
    margin: 0 !important;
    word-break: keep-all;
}

/* 메인 타이틀 */
.reveal h2.roadmap-header {
    font-size: 2.3rem;
    font-weight: 900;
    margin-bottom: 45px;
    color: #333333;
    letter-spacing: -1px;
    text-align: center;
}

.roadmap-text strong{
    font-weight: 700;
    color: #D4AF37;
}