/* Header */
.page-header {
    padding-bottom: 48px;
}

/* Detail */
.detail-card {
    border-radius: 8px;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.25);
}

.detail-img {
    width: 100%;
    height: 24vw;
    object-fit: cover;
}

/* Others */
.others-container hr {
    border: 1px solid var(--primary-lightest);
}

.others-container {
    margin-bottom: 16px;
}

.others-container h3 {
    transition: all 200ms ease;
}

.others-container:hover h3 {
    color: var(--accent-base);
}

@media only screen and (max-width: 998px) {
    .detail-img {
        height: 50vw;
    }
}
