.archive-section .hero-text-content {
    width: 100%;
}

.archive-section {
    padding-right: var(--small-padding);
}

.archive-tags-outer {
    width: 100%;
}

archive-tags {
    display: flex;
    row-gap: max(10px, calc(0.69vw * var(--scale)));
    flex-wrap: wrap;
    align-items: center;
    justify-items: flex-start;
} 

.archive-tag-button {
    padding: 0px;
    position: relative;
    display: block;
    cursor: pointer;
    background-color: transparent;
    white-space: nowrap;
}

.archive-tag-button::before,
.archive-tag-button::after {
    content: none !important;
}

html[data-cta-style="Square Bracket"] .archive-tag-button:first-of-type::before,
html[data-cta-style="Mixed"] .archive-tag-button:first-of-type::before {
    content: "[" !important;
}  

html[data-cta-style="Square Bracket"] .archive-tag-button:last-of-type::after,
html[data-cta-style="Mixed"] .archive-tag-button:last-of-type::after {
    content: "]" !important;
}  

.radio-button-text {
    position: relative;
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    color: var(--text-color);
    font-size: max(14px, calc(0.97vw * var(--scale)));
    opacity: 0.7;
}

.archive-tag-button input[type='radio'] {
    -webkit-appearance: none;
    margin: 0px;
    padding: 0px;
    display: inline-flex;
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    cursor: pointer;
    z-index: 0;
}

.archive-tag-button input[type='radio']:checked ~ .radio-button-text {
    opacity: 1;
    text-decoration: underline;
}

.archive-tag-button:hover .radio-button-text{
    opacity: 1;
    text-decoration: underline;
}

.archive-tags-separator {
    width: 1px;
    height: max(16px, calc(1.11vw * var(--scale)));
    background-color: var(--text-color);
    opacity: 0.6;
}

/* Styles for tablet */
@media (max-width: 991px) { 
    .archive-section {
        padding-right: 0px;
    }

    .archive-section .hero-text-content {
        max-width: 100%;
    }

    archive-tags {
        position: relative;
        overflow-x: scroll;
        flex-wrap: nowrap;
        justify-content: flex-start;
        width: 100vw;
        padding-right: var(--small-padding);
        padding-left: var(--small-padding);
        padding-top: 4px;
        left: -28px;
        padding-bottom: 10px;
    }

    .archive-tags-separator {
        display: block;
        min-width: 1px;
    }
}

/* Styles for mobile */
@media (max-width: 479px) { 
    archive-tags {
        left: -18px;
    }
}