@charset "utf-8";
/* CSS Document */

/* ===========================
   HEADER
=========================== */
.foro-header {
    background: linear-gradient(135deg, #1a73e8, #0d47a1);
    color: #fff;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.foro-header-title {
    display: flex;
    flex-direction: column;
}

.foro-header-title h1 {
    font-size: 2.2rem;
    margin: 0;
}

.foro-header-title p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 5px 0 0;
}

.btn-volver-campus {
    background: #fff;
    color: #1a73e8;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-volver-campus:hover {
    background: #f1f1f1;
}

/* Responsive ajuste del botón en móviles */
@media (max-width: 600px) {
    .foro-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .btn-volver-campus {
        align-self: center;
    }
}
