.tabs-content {
    width: 100%;
}

.tabs-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
}

.tabs-headers {
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: center;
    gap: 10px;
}

.tab-header {
    cursor: pointer;

    padding: 5px 10px;
    background-color: var(--hm-slate);
    color: var(--hm-licorice);

    font-family: 'R500';
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background-color 0.3s ease-in-out;
}

.tab-header.active {
    background-color: var(--hm-yellow50);
}

.tab-header:not(.active):hover {
    background-color: var(--hm-yellow25);
}

.tab-content {
    display: none;
    width:100%;
}