.oficinas-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}
.oficinas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}
.oficina-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #ec0000; /* Detalle en rojo institucional */
    transition: transform 0.3s ease;
}
.oficina-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.oficina-card h3 {
    color: #4e2602;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3em;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.oficina-info {
    margin-bottom: 8px;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95em;
}
.oficina-info i {
    color: #ec0000;
    margin-top: 4px;
    width: 16px;
}
.director-label {
    font-weight: bold;
    display: block;
    color: #333;
}