/* Base Footer Styles */
.footer {
    background: linear-gradient(to right, #047857, #6b21a8); /* from-green-700 to-purple-700 */
    color: white;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    font-family: system-ui, sans-serif;
}

/* Text Styling */
.footer p {
    margin: 0.25rem 0;
}

.footer .text-lg {
    font-size: 1.125rem;
    font-weight: 600;
}

.footer .text-sm {
    font-size: 0.875rem;
}

.footer .text-xs {
    font-size: 0.75rem;
    line-height: 1.5;
}

/* Link Styling */
.footer a {
    color: inherit;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #e5e7eb; /* hover:text-gray-200 */
}

/* Sponsor Logos Section */
.footer .sponsor.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.footer .sponsor img {
    height: 2.75rem; /* Reduced from 3rem (48px) to 2rem (32px) */
    width: auto;
    object-fit: contain;
}
