/* support-card */
.support-card {
    border-bottom: 2px solid #333 !important;
}
.support-card .support-card__content {
    text-align: center;
    background: url("/child/img/sub/support/support-content.webp") no-repeat right / cover;
    padding: 0 16px 40px;
    @media (max-width: 768px) {
        padding-bottom: 20px;
    }
}
.support-card .v-card__title,
.support-card .v-card__text,
.support-card .v-card__actions {
    letter-spacing: inherit;
    font-weight: 800;
    padding: 0;
}
.support-card .v-card__title {
    font-size: 24px;
    justify-content: center;
    line-height: 1.5;
    @media (max-width: 768px) {
        font-size: 18px;
    }
}
.support-card .v-card__text {
    line-height: 1.35;
    font-size: 18px;
    color: #8f6a3e;
    margin: 24px 0 10px;
    @media (max-width: 768px) {
        margin: 16px 0 8px;
    }
}

.support-card .v-card__actions {
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    gap: 16px;
    @media (max-width: 768px) {
        gap: 8px;
        flex-direction: column;
    }
}

.support-card .v-card__actions .contact-btn {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #999;
}

.support-card .v-card__actions .contact-btn:not(:first-child) {
    position: relative;
}

.support-card .v-card__actions .contact-btn:not(:first-child)::after {
    content: "";
    width: 1px;
    height: 13px;
    position: absolute;
    left: -9px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ddd;
    @media (max-width: 768px) {
        display: none;
    }
}


/* empty-message */
.empty-message {
    white-space: nowrap;
}

/* bbs-list-table */
@media (max-width:1024px) {
    .bbs-list-table tr {
        min-height: 40px;
    }
}