Default
Small
Large (per titoli di sezione)
.tabs {
display: flex;
gap: var(--spacing-xxl);
}
.tab {
font-size: var(--font-size-lg);
font-weight: var(--font-weight-medium);
font-family: var(--font-family-base);
cursor: pointer;
text-decoration: none;
color: var(--grey-500);
margin-bottom: 0;
}
.tab--active {
color: var(--grey-700);
}
.tab--small {
font-size: var(--font-size-sm);
}
.tab--large {
font-size: var(--font-size-xl);
font-weight: var(--font-weight-bold);
text-transform: uppercase;
}