.ofertas-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.oferta-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.oferta-box:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.oferta-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.empresa-logo {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.empresa-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.empresa-logo a {
    display: block;
    width: 100%;
    height: 100%;
}

.empresa-meta a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.empresa-meta a:hover {
    color: #212529;
}

.empresa-meta {
    margin-bottom: 10px;
    margin-top: 10px;
}

.posted-by {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.oferta-detalles {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.ubicacion, .modalidad {
    display: flex;
    align-items: center;
    gap: 5px;
}

.oferta-accion {
    flex-shrink: 0;
    align-self: center;
    margin-top: 0;
}

.boton-postular {
    display: inline-block;
    background-color: #cfcfcf;
    color: #000000;
    padding: 8px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.boton-postular:hover {
    background-color: #9c9c9c;
    color: #212529;
    text-decoration: none;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .oferta-header {
        flex-direction: column;
    }

    .oferta-accion {
        width: 100%;
        margin-top: 15px;
    }

    .boton-postular {
        display: block;
        text-align: center;
    }
}


.descripcion-cargo {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.destacado {
    color: #fadb37;
}

.descripcion-cargo p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}
