/* ===== Tech Wizard Footer Standard ===== */
.tw-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.tw-footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
}

.tw-footer-copyright {
    line-height: 1.5;
}

.tw-footer-made-by {
    text-align: right;
    line-height: 1.5;
}

.tw-footer-made-by a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.tw-footer-made-by a:hover {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .tw-footer-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }

    .tw-footer-made-by {
        text-align: center;
        order: -1; /* Optional: makes "made by" appear first on mobile */
    }

    .tw-footer-copyright {
        text-align: center;
        font-size: 0.85rem;
    }
}