.widget-area-section
{
    background-color: var(--footer--bg-color-light);
}


.site-footer {
    border-top-width: 1px;
    max-width: none;
    background-color: var(--footer--bg-color-dark);
}

#colophon.site-footer {
    margin-top: 0;
}

.site-footer > .site-info {
    display: flex;
    justify-content: space-between; /* раздвигаем блоки */
    align-items: center; /* выравниваем по вертикали */
    margin: auto;
    border-top-width: 1px;
    border-top-color: #cccccc;
    padding-bottom: var(--global--spacing-vertical);
}

.site-footer > .site-info .site-name
{
    text-transform: none;
}

.site-footer .brand-strong {
    color: var(--brand-strong-color-on-light);
}

.site-copyright {
    margin-left: 3em;
    font-size: 0.8em;
}

.try-to-fix-deploy {
    display: none;
}








.footer-hero-section
{
    background: var(--footer--bg-color-light);
    padding: 40px 0;
}

.footer-hero {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    color: var(--footer--color-text);
}

.footer-left {
    max-width: 40%;
}

.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
}

.footer-company {
    color: #f1c40f; /* акцент */
    margin-bottom: 10px;
}

.footer-description {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 0.7em;
}

.footer-icons {
    display: flex;
    gap: 12px;
}

.footer-icon svg {
    width: 28px;
    height: 28px;
    /*transition: opacity 0.3s;*/
    fill: none;
    stroke: #9ea7a0;
    transition: stroke .25s ease, fill .25s ease;
}

.footer-icon:hover svg {
    opacity: 0.8;
    stroke: #000;
    /*border-color: #f9d776;*/
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* заголовок справа */
}

.footer-column-title {
    margin-bottom: 12px;
    font-weight: bold;
    align-self: flex-start;
}

.footer-links {
    align-self: flex-start; /* список уходит влево */
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.9em;
}

div.footer-hero-section > div.footer-hero.container ul.footer-links
{
    font-family: var(--footer--font-family), var(--global--font-primary), sans-serif;
}

.footer-links li {
    margin: 6px 0;
}

.footer-links a {
    color: var(--footer--color-link);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #f1c40f; /* подсветка при наведении */
}