.site-footer {
    background: var(--bg-secondary);
    color: #ffffff;
    /* padding: 2.5rem 1.5rem 1rem; */
    /* padding-top: 0; */
    /* padding-left: 1rem;
    padding-right: 1rem; */
    /* margin-top: 3rem; */
    font-size: var(--text-xl);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.footer-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    padding-bottom: 0.5rem;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.footer-address strong {
    display: block;
    color: var(--text-inverse);
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
}

.footer-bottom p {
    font-weight: 600;
    font-size: var(--text-xl);
    color: var(--text-inverse);
}

.footer-address p {
    margin: 0.25rem 0;
    line-height: 1.2rem;
    font-weight: bold;
    font-size: var(--text-xl);
    color: var(--text-inverse);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.social-heading {
    color: var(--text-inverse);
    font-size: var(--text-xl);
    font-weight: bold;
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-social a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    /* background: rgba(255, 255, 255, 0.08); */
    /* background: rgb(255, 255, 255); */
    color: #ffffff;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    font-size: var(--text-xl);
}


/* 
.footer-social a:hover {
    background: var(--color-accent, #2563eb);
    color: #fff;
} */

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

.footer-bottom {
    max-width: 960px;
    margin: 0.1rem auto 0;
    text-align: start;
    font-size: 0.8rem;
    color: var(--text-primary);
}

@media (max-width: 600px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-content: flex-start;
    }

    .site-footer {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 1024px) {
    /* .site-footer{
        padding: 0 1.5rem 1rem;
    } */
}

.footer-container {
    /* max-width: 300px; */
    /* Optional: sets a boundary for the box */
    padding: 2px;
    /* border: 1px solid #ccc; */
    border: none;
}

.wrapped-image {
    float: left;
    /* This makes the text wrap around it */
    width: 80px;
    height: 80px;
    margin-right: 15px;
    /* Adds space between image and text */
    margin-bottom: 5px;
    /* Adds space if text wraps underneath */
    object-fit: scale-down;
}

/* Optional: Clearfix to ensure the container expands to fit the floated image */
.content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

.wrapped-image {
    border: none;
    /* Removes default link borders */
    transition: opacity 0.3s ease;
    /* Smooth hover transition */
}

.wrapped-image:hover {
    opacity: 0.8;
    /* Makes the image slightly transparent when hovered */
    cursor: pointer;
}

.extra-footer {
    padding-top: 1.5rem;
    display: flex !important;
    flex-direction: row !important;
}

.article-div {
    display: flex;
    flex-direction: column;
    width: 100%;
    /* Or any specific width */
    /* border: 2px solid #333; */
}

@media (max-width: 1024px) {
    .wrapped-image {
        width: 400px;
    }
}