.jurathumb_card-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
/* 카드 전체를 링크로 */
a.jurathumb_card {
    display: block;
    text-decoration: none;
    color: inherit;
}
.jurathumb_card-box {
    width: 376px;
    height: 394px;
    background: #ece5da;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.4s ease;
}
a.jurathumb_card:hover .jurathumb_card-box {
    transform: translateY(-6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); border: 1px solid #ccc;
}
.jurathumb_card-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.jurathumb_card-title {
    text-align: center;
    margin-top: 20px;
}
.jurathumb_detail-btn {
    display: block;
    width: 140px;
    height: 45px;
    margin: 15px auto 0;
    background: #fff; border: 1px solid #094531;
    border-radius: 50px;
    text-align: center;
    line-height: 45px;
    transition: background 0.3s ease;
}
a.jurathumb_card:hover .jurathumb_detail-btn {
    background: #094531;
    color: #fff;
}
@media (max-width: 1280px) {
    .jurathumb_card-section {
        grid-template-columns: repeat(3, 1fr);
    }
    .jurathumb_card-box {
        width: 100%;
        height: auto;
        aspect-ratio: 376 / 394;
    }
}
@media (max-width: 968px) {
    .jurathumb_card-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 640px) {
    .jurathumb_card-section {
        grid-template-columns: 1fr;
    }
}