.advice_files {
    a {
        width: 100%;
        height: auto;
        padding: 1rem 0;
        display: grid;
        text-align: center;
        color: white;
        background: var(--color-secondary);
        box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        place-content: center;
        border-radius: 0.5rem;
        transition: all 0.3s;
        cursor: pointer;

        &:hover {
            background-color: var(--color-primary-dark);
        }
    }
}
