/* Attributes */

.attributes-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 2em;
}

.attribute-container {
    width: 100%;
}

.attribute {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: var(--FS11);
    padding: 1.5em;
    border-radius: 0.3em;
    background-color: var(--page-background);
    box-shadow: 0 0 1em var(--shadow-100);
}

@media (prefers-reduced-motion: no-preference) {
    .attribute {
        opacity: 0;
        transform: scale(0.6);
        transition: all 0.6s ease;
    }
}

.attribute-container.come-in .attribute {
    opacity: 1;
    transform: scale(1);
}

.attribute-icon-container {
    display: flex;
    justify-content: center;
}

.attribute-icon {
    height: 3em;
    width: auto;
}

.attribute-text-container {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.attribute-header h3 {
    text-align: center;
    font-size: var(--FS9);
    color: var(--brand-color2);
    line-height: 1;
}

.attribute-description p {
    font-size: var(--FS12);
    line-height: 1.5;
}
