/* ── Footer styles ── */
:root {
    --footer-bg: #ffffff;
    --text-main: #475569;
    --text-heading: #0f172a;
    --accent-blue: #007bff;
    --accent-hover: #0056b3;
    --border-color: #f1f5f9;
    --brand-x: #000000;
    --brand-youtube: #FF0000;
}

.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-main);
    padding: 80px 0 40px;
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.6;
    border-top: 1px solid var(--border-color);
}

.footer-title {
    color: var(--text-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08rem;
    margin-bottom: 25px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover { color: var(--text-heading); padding-left: 5px; }

.footer-links i {
    color: var(--accent-blue);
    font-size: 14px;
    width: 25px;
    transition: transform 0.2s ease;
}

.footer-links a:hover i { transform: scale(1.2); }

.footer-logo {
    max-width: 120px;
    height: auto;
    display: block;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover { opacity: 1; }
.footer-logo-link { display: inline-block; text-decoration: none; }

.social-icons a {
    margin-right: 20px;
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.2s ease;
}

.social-icons a[aria-label="X"] { color: var(--brand-x); }
.social-icons a[aria-label="YouTube"] { color: var(--brand-youtube); }
.social-icons a:hover { transform: translateY(-3px); opacity: 0.8; }

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: #94a3b8;
}

@media (max-width: 768px) {
    .site-footer { padding: 60px 0 30px; text-align: center; }
    .footer-links a { justify-content: center; }
    .text-md-right { text-align: center !important; margin-top: 20px; }
}

/* ── Basic WP content area ── */
.dsb-wp-content {
    min-height: 60vh;
    padding: 40px 0;
}
