/* Component: Infos Entreprise */
.infos-entreprise {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    color: var(--color-white);
    font-size: var(--fs-text);

    .infos-entreprise__nom {
        margin: 0;
        font-weight: var(--fw-bold);
        font-size: var(--fs-subtext);
        padding: 0;
    }

    .infos-entreprise__titre {
        font-weight: var(--fw-thin);
        margin: 0;
        padding: 0;
        
    }

    .infos-entreprise__telephone a {
        text-decoration: none;
        color: var(--color-white);
        transition: color 0.3s ease;

        &:hover {
            color: var(--color-hover);
            text-decoration: underline;
        }
    }
}
