/* 전체 섹션 */
#travel-article {
    width: 100%;
    padding: 80px 20px;
    background: linear-gradient(135deg, #f4f8ff, #eef3ff);
    display: flex;
    justify-content: center;
}

/* 내부 정렬 */
#list_a {
    width: 100%;
    max-width: 1100px;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* 카드 디자인 */
.Description {
    flex: 1 1 450px;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

/* 카드 hover 효과 */
.Description:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
}

/* 제목 스타일 */
.Description h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
    position: relative;
}

/* 제목 밑줄 포인트 */
.Description h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    background: #4a90e2;
    margin-top: 10px;
    border-radius: 2px;
}

/* 본문 스타일 */
.Description p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* 반응형 */
@media (max-width: 768px) {
    #travel-article {
        padding: 50px 15px;
    }

    .Description {
        padding: 25px;
    }

    .Description h2 {
        font-size: 22px;
    }

    .Description p {
        font-size: 15px;
    }
}