.hrt-cvc,
.hrt-cvc * {
    box-sizing: border-box;
}

.hrt-cvc {
    width: 100%;
    color: #000;
    font-family: inherit;
}

.hrt-cvc__inner {
    width: 100%;
    margin-inline: auto;
}

.hrt-cvc__header {
    width: 100%;
}

.hrt-cvc__badge-row {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hrt-cvc__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 12px;
    padding: 8px 15px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.hrt-cvc__badge-icon,
.hrt-cvc__column-icon,
.hrt-cvc__stream-icon,
.hrt-cvc__notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.hrt-cvc__title {
    margin: 0;
    color: #000;
    font-family: inherit;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.025em;
}

.hrt-cvc__title a {
    text-decoration: none;
}

.hrt-cvc__description {
    max-width: 780px;
    margin: 14px auto 0;
    font-size: 17px;
    line-height: 1.7;
}

.hrt-cvc__description > :first-child,
.hrt-cvc__richtext > :first-child,
.hrt-cvc__notice-content > :first-child {
    margin-top: 0;
}

.hrt-cvc__description > :last-child,
.hrt-cvc__richtext > :last-child,
.hrt-cvc__notice-content > :last-child {
    margin-bottom: 0;
}

.hrt-cvc__table {
    width: 100%;
    overflow: hidden;
    border: 1px solid #f2e6d6;
}

.hrt-cvc__columns,
.hrt-cvc__row {
    display: grid;
    grid-template-columns: minmax(130px, .8fr) minmax(220px, 1.4fr) minmax(220px, 1.25fr) minmax(180px, 1fr);
}

.hrt-cvc__columns {
    border-bottom: 1px solid #f2e6d6;
}

.hrt-cvc__column-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
}

.hrt-cvc__column-icon {
    font-size: 16px;
}

.hrt-cvc__row {
    border-bottom: 1px solid #f2e6d6;
    transition: background-color .2s ease;
}

.hrt-cvc__row:last-child {
    border-bottom: 0;
}

.hrt-cvc__cell {
    min-width: 0;
    border-right: 1px solid #f2e6d6;
    font-size: 15px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.hrt-cvc__cell:last-child {
    border-right: 0;
}

.hrt-cvc__stream {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 82px;
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1;
}

.hrt-cvc__stream--secondary {
    color: #000;
}

.hrt-cvc__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.hrt-cvc__tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    border: 1px solid;
    border-radius: 999px;
    color: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease;
}

.hrt-cvc__source,
.hrt-cvc__official {
    display: inline-flex;
    margin-top: 9px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hrt-cvc__notices {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.hrt-cvc__notice {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 17px 19px;
    border: 1px solid;
    border-radius: 16px;
}

.hrt-cvc__notice-icon {
    margin-top: .15em;
    font-size: 19px;
}

.hrt-cvc__notice-content {
    min-width: 0;
    font-size: 14px;
    line-height: 1.65;
}

.hrt-cvc__reviewed {
    display: block;
    margin-top: 7px;
    opacity: .68;
}

@media (max-width: 900px) {
    .hrt-cvc__columns {
        display: none;
    }

    .hrt-cvc__body {
        display: grid;
        gap: var(--hrt-cvc-card-gap, 16px);
        padding: 16px;
    }

    .hrt-cvc__row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: hidden;
        border: 1px solid #f2e6d6;
        border-radius: 18px;
    }

    .hrt-cvc__cell {
        border-right: 0;
        border-bottom: 1px solid #f2e6d6;
    }

    .hrt-cvc__cell:nth-child(odd) {
        border-right: 1px solid #f2e6d6;
    }

    .hrt-cvc__cell:nth-last-child(-n+2) {
        border-bottom: 0;
    }

    .hrt-cvc__cell::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 10px;
        color: #000;
        font-size: 12px;
        font-weight: 750;
        line-height: 1.25;
        opacity: .65;
        text-transform: uppercase;
        letter-spacing: .04em;
    }
}

@media (max-width: 600px) {
    .hrt-cvc__title {
        font-size: clamp(27px, 9vw, 38px);
    }

    .hrt-cvc__description {
        font-size: 15px;
    }

    .hrt-cvc__body {
        padding: 12px;
    }

    .hrt-cvc__row {
        grid-template-columns: 1fr;
    }

    .hrt-cvc__cell,
    .hrt-cvc__cell:nth-child(odd),
    .hrt-cvc__cell:nth-last-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid #f2e6d6;
    }

    .hrt-cvc__cell:last-child {
        border-bottom: 0;
    }

    .hrt-cvc__notice {
        padding: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hrt-cvc *,
    .hrt-cvc *::before,
    .hrt-cvc *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
