.sr-footer-module {
    width: 100%;
    padding: 30px 10px;
    color: var(--sr-footer-text);
}

.sr-footer-module__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.sr-footer-module__col {
    white-space: nowrap;
    color: var(--sr-footer-text);
    font-size: 11px;
    line-height: 1.4;
}

.sr-footer-module__col a {
    color: var(--sr-footer-link);
    text-decoration: underline;
}

.sr-footer-module__phone {
    text-decoration: none !important;
}

.sr-footer-module__logo img {
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
}

.sr-footer-module__divider {
    width: 2px;
    height: 30px;
    background-color: var(--sr-footer-divider);
    flex: 0 0 auto;
  min-height: 40px;
}

@media (max-width: 976px) {
    .sr-footer-module__inner {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 16px 32px;
    }

    .sr-footer-module__divider {
        display: none;
    }

    .sr-footer-module__col {
        white-space: normal;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .sr-footer-module {
        padding: 16px 20px;
    }

    .sr-footer-module__col {
        font-size: 12px;
    }
}
@media (max-width: 767px) {
  .sr-footer-module__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

@media (max-width: 767px) {
  .sr-footer-module__col.sr-footer-module__logo {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    gap: 12px !important;
  }
}