.section-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    padding: 2rem 0;
    min-height: 45vh;
    box-sizing: border-box;
    /* 위는 흰색, 아래는 #f0f0f0으로 자연스럽게 변하는 그라데이션 */
    background: linear-gradient(to bottom, white 0%, #f0f0f0 100%);
    font-family: Arial, sans-serif;
    width: 100vw;
    margin: 0;
}

/* 링크 */
.section-title a {
    text-decoration: none;
    color: inherit;
}

/* 카드 컨테이너 */
.section-title .card-container {
    text-align: center;
}

/* 카드 */
.section-title .card {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 10px;
    transition: transform 0.3s;
}

.section-title .card:hover {
    transform: scale(1.1);
    cursor: pointer;
}

.section-title .card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* 카드 텍스트 */
.section-title .card-text {
    display: block;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: bold;
    color: black;
    text-align: center;
}
