/*
Theme Name: Aposta Online
Theme URI: https://aposta.online
Description: Ett lättviktigt och snabbt tema för Aposta Online - sport och betting-sajt
Author: Aposta Online
Version: 1.0.0
Text Domain: aposta-online
*/

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a472a;
    --secondary-color: #2d5016;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
}

/* Keep sidebar banners visible on desktop while scrolling (used in reviews/home/football pages). */
@media (min-width: 1024px) {
    .sidebar-banner {
        position: sticky;
        top: 90px;
        align-self: flex-start;
    }
}

/* Global typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 0.85rem;
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.text-muted {
    color: var(--text-light);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.site-header {
    background: #013466;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: nowrap;
    }
    
    .header-content > .main-navigation {
        position: absolute;
        left: auto;
        right: auto;
    }
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.logo-icon {
    /* Size is already correct in the image file */
    object-fit: contain;
    display: block;
    transition: opacity 0.3s;
    flex-shrink: 0;
}

.logo-icon:hover {
    opacity: 0.8;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.logo-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.2;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    margin-left: auto;
    z-index: 1001;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.header-login-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0;
    margin-left: 2rem;
    position: relative;
    transition: opacity 0.3s;
}

.header-auth-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 2rem;
    flex-shrink: 0;
}

.header-auth-actions .header-login-link {
    margin-left: 0;
    padding: 0.5rem 0.25rem;
}

.header-signup-link,
.header-logout-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    white-space: nowrap;
}

.header-signup-link:hover,
.header-logout-link:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
}

.header-account-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 0.25rem;
    opacity: 0.95;
}

.header-account-link:hover {
    opacity: 0.8;
}

.header-auth-actions :where(a):focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.65);
    outline-offset: 2px;
}

.header-login-link:hover {
    opacity: 0.8;
}


.header-login-link svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
}

.menu-item-login {
    display: none !important;
}

.menu-item-signup {
    display: none !important;
}

.main-navigation {
    display: block;
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

/* Mobile navigation styles are below in the mobile media query */

.main-navigation a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.main-navigation a:hover {
    color: rgba(255, 255, 255, 0.8);
}

/* Active menu item styling */
.main-navigation .nav-menu > .menu-item > a.active,
.main-navigation .nav-menu > .current-menu-item > a {
    background-color: #3182ce;
    border-radius: 6px;
    padding: 0.5rem 0.85rem;
    margin: -0.5rem 0;
}

.main-navigation .sub-menu a.active {
    background-color: #3182ce;
    border-radius: 4px;
}

/* Hover effect on active items */
.main-navigation .nav-menu > .menu-item > a.active:hover {
    background-color: #4299e1;
    color: #ffffff;
}

.menu-item.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.7rem;
    margin-left: 0.25rem;
}

.sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border-radius: 4px;
    padding: 0.5rem 0;
    min-width: 180px;
    list-style: none;
    margin: 0;
    margin-top: 0.5rem;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.menu-item.has-dropdown:hover .sub-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin: 0;
}

.sub-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #1a1a1a;
}

.sub-menu a:hover {
    background: #f5f5f5;
    color: #013466;
}

/* Main Content */
.site-main {
    min-height: calc(100vh - 200px);
    padding: 1.5rem 0 2rem;
}

.single-aof_team .site-main {
    padding-top: 1rem;
}

/* Footer */
.site-footer {
    background: #1e293b;
    color: #ffffff;
    padding: 3rem 0 0;
    margin-top: 4rem;
    /* Subtle depth */
    background-image: radial-gradient(1200px 600px at 15% 0%, rgba(59, 130, 246, 0.10), transparent 55%),
                      radial-gradient(900px 500px at 85% 10%, rgba(16, 185, 129, 0.08), transparent 60%);
}

.footer-content {
    max-width: 100%;
}

.footer-main {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
    gap: 3rem;
    padding-bottom: 2.5rem;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.footer-brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.1rem;
}

.footer-brand-title {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.footer-brand-description {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.9);
    max-width: 420px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2.5rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-transform: none;
    letter-spacing: 0.03em;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links li {
    margin: 0;
}

.footer-links a {
    color: rgba(226, 232, 240, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.65);
    outline-offset: 2px;
    border-radius: 6px;
}

.footer-bottom {
    background: #0f172a;
    padding: 1.25rem 0 1.75rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.footer-copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    text-align: center;
}

.footer-legal {
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.95);
    line-height: 1.6;
    flex: 1 1 300px;
    min-width: 0;
    max-width: calc(100% - 100px);
    box-sizing: border-box;
}

.footer-legal p {
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    hyphens: auto;
}

.footer-legal p:first-child {
    font-weight: 500;
    color: rgba(226, 232, 240, 1);
}

.footer-legal-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(203, 213, 225, 0.9);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(226, 232, 240, 0.85);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-social-link:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    color: #60a5fa;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

/* Responsible Gaming Section */
.footer-responsible-gaming {
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
}

.responsible-gaming-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.age-restriction-logo {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: invert(1) brightness(0.85);
    opacity: 0.9;
}

.responsible-gaming-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.875rem;
    color: rgba(226, 232, 240, 0.9);
    line-height: 1.5;
}

.responsible-gaming-text strong {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.responsible-gaming-text span {
    color: rgba(203, 213, 225, 0.85);
}

.responsible-gaming-link {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.responsible-gaming-link:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header .container {
        padding: 0 10px;
        max-width: 100%;
    }
    
    .header-content {
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 0;
        width: 100%;
        overflow: hidden;
    }
    
    .site-logo {
        flex: 0 1 auto;
        min-width: 0;
        max-width: calc(100% - 60px);
        display: flex;
        align-items: center;
        gap: 0.5rem;
        overflow: hidden;
    }
    
    .logo-icon {
        width: 28px !important;
        height: 28px !important;
        flex-shrink: 0;
    }
    
    .logo-title {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }
    
    .logo-tagline {
        display: none !important;
    }
    
    .header-login-link,
    .header-auth-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        min-width: 40px;
    }
    
    .mobile-login-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-login-link svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        flex-shrink: 0;
    }
    
    .menu-item-login {
        display: list-item !important;
    }

    .menu-item-signup {
        display: list-item !important;
    }

    .mobile-signup-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .mobile-signup-link svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        flex-shrink: 0;
    }
    
    .header-login-link::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        flex-shrink: 0;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        margin-left: auto;
        padding: 0.5rem;
    }
    
    .hamburger-icon {
        width: 28px;
        height: 22px;
        gap: 5px;
    }
    
    .hamburger-icon span {
        height: 3px;
    }
    
    /* Completely remove navigation from flex flow on mobile */
    .header-content > nav.main-navigation,
    .header-content > #main-navigation {
        display: none !important;
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background: #013466;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 1000;
    }
    
    /* Show navigation when active */
    #main-navigation.active {
        display: block !important;
        max-height: 500px;
        padding: 1rem 0;
    }
    
    #main-navigation.active .nav-menu {
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 20px;
    }
    
    .main-navigation .menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation .menu-item:last-child {
        border-bottom: none;
    }
    
    .main-navigation a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .main-navigation .has-dropdown .dropdown-arrow {
        float: right;
        transform: rotate(0deg);
        transition: transform 0.3s;
    }
    
    .main-navigation .has-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .main-navigation .sub-menu,
    .sub-menu {
        position: static;
        display: none;
        box-shadow: none !important;
        background: transparent !important;
        margin-top: 0;
        margin-left: 0;
        padding-left: 1.5rem;
        border-left: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 0;
        min-width: auto;
    }
    
    .main-navigation .sub-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-navigation .sub-menu li:last-child {
        border-bottom: none;
    }
    
    .main-navigation .sub-menu li a,
    .main-navigation ul.sub-menu a,
    .sub-menu a,
    .sub-menu li a {
        color: #ffffff !important;
        padding: 0.75rem 0.5rem;
        font-size: 0.95rem;
        background: transparent !important;
    }
    
    .main-navigation .sub-menu li a:hover,
    .main-navigation .sub-menu li a.active,
    .main-navigation ul.sub-menu a:hover,
    .main-navigation ul.sub-menu a.active,
    .sub-menu a:hover,
    .sub-menu a.active {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #ffffff !important;
        border-radius: 4px;
    }
    
    .main-navigation .has-dropdown.active .sub-menu {
        display: block;
    }
    
    .content-layout {
        display: flex !important;
        flex-direction: column !important;
    }
    
    .main-content {
        order: 1 !important;
    }
    
    .sidebar {
        order: 2 !important;
    }
    
    .team-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-crest-img {
        width: 120px;
        height: 120px;
    }
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* View All Links (e.g., "Ver classificação completa") */
.section-view-all {
    margin-top: 1rem;
}

.view-all-link {
    color: #3182ce;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.view-all-link:hover {
    color: #2c5282;
}

/* Tables */
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.data-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

.data-table tr:hover {
    background: var(--bg-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.btn:hover {
    background: var(--secondary-color);
}

.btn-secondary {
    background: var(--accent-color);
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .site-main {
        width: 100%;
        overflow-x: hidden;
    }

    .site-footer {
        padding: 2rem 0 0;
        margin-top: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding-bottom: 1.5rem;
    }

    .footer-responsible-gaming {
        padding: 1rem 15px;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: calc(50vw - 50% + 15px);
        padding-right: calc(50vw - 50% + 15px);
    }
    
    .responsible-gaming-inner {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 0;
    }
    
    .age-restriction-logo {
        width: 40px;
        height: 40px;
    }
    
    .responsible-gaming-text {
        flex: 1 1 200px;
        font-size: 0.8rem;
    }
    
    .responsible-gaming-text strong {
        font-size: 0.875rem;
    }
    
    .responsible-gaming-link {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
    }

    .footer-bottom {
        padding: 0.75rem 0 0.75rem;
        margin-top: 0;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding-left: calc(50vw - 50% + 15px);
        padding-right: calc(50vw - 50% + 15px);
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        max-width: 100%;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: -12px !important;
        width: 100%;
    }
    
    .footer-legal {
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        max-width: 100%;
        line-height: 1.3;
        height: auto !important;
        min-height: 0 !important;
        flex: none !important;
    }
    
    .footer-legal p {
        font-size: 0.8rem;
        line-height: 1.3;
        margin: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .footer-legal p:first-child {
        margin-bottom: 0 !important;
    }
    
    .footer-legal p:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    .footer-legal-note {
        font-size: 0.75rem;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        line-height: 1.3;
    }
    
    .footer-social {
        width: 100%;
        justify-content: flex-start;
        margin-top: 0.15rem !important;
        padding: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        margin-bottom: 0 !important;
    }
}

