/* --- Contenedor Principal Estándar --- */
.section-estandar { 
    border: 1px solid rgba(148, 163, 184, 0.4) !important; 
    border-radius: 32px; 
    padding: 40px 25px 25px 25px; 
    margin-bottom: 60px;
    background: rgba(30, 41, 59, 0.4) !important; /* Fondo frío/azulado */
    backdrop-filter: blur(10px);
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.8);
}

/* --- Tarjeta de Trabajo Estándar --- */
.section-estandar .card-job {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

/* Hover con brillo plomo/plata */
.section-estandar .card-job:hover {
    transform: translateY(-10px);
    border-color: rgba(148, 163, 184, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                0 0 20px rgba(148, 163, 184, 0.1) !important;
}

/* --- Ribbon / Etiqueta Estándar (Listón) --- */
.section-estandar .ribbon-estandar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; 
    height: 30px;
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%) !important;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Icono de Ubicación y Títulos --- */
.section-estandar .bi-geo-alt-fill {
    color: #94a3b8 !important; /* Pin de ubicación aluminio */
}

.section-estandar .job-title {
    font-weight: 700;
    color: #ffffff;
}

/* --- Contenedor de Información (Badges) --- */
.section-estandar .info-badge-container {
    background: rgba(2, 6, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px;
}

.section-estandar .info-label {
    text-transform: uppercase;
    color: #64748b; /* Plomo oscuro para etiquetas */
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-estandar .info-value {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

/* --- Botón de Acción Estándar --- */
.section-estandar .btn-ver-postulacion {
    background: linear-gradient(135deg, #475569 0%, #64748b 100%) !important;
    color: #ffffff !important;
    height: 50px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px -5px rgba(71, 85, 105, 0.4);
    cursor: pointer;
}

.section-estandar .btn-ver-postulacion:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, #64748b 0%, #94a3b8 100%) !important;
    box-shadow: 0 15px 25px -5px rgba(148, 163, 184, 0.3);
}