/* === Base === */
body {
    background-color: #f4f6f8;
    font-family: 'Segoe UI', 'Roboto', sans-serif;
    color: #333;
}

/* === Título Principal === */
.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: #2c3e50;
    position: relative;
}

.section-title::after {
    content: "";
    width: 50px;
    height: 3px;
    background-color: #5a789b;
    display: block;
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* === Tarjeta de Experiencia === */
.experience-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.7rem;
    border: 1px solid #e3e3e3;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.experience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* === Cabecera === */
.role {
    color: #30577f; /* azul sobrio */
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.company {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

.divider {
    margin: 0 0.3rem;
    color: #adb5bd;
}

.date {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.3rem;
    font-style: italic;
}

/* === Descripción === */
.description p {
    font-size: 0.95rem;
    color: #444;
    margin-top: 1rem;
    line-height: 1.5;
}

/* === Tecnologías === */
.technologies .label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: #37474f;
    margin-bottom: 0.3rem;
}

.tech-tags {
    margin-top: 0.3rem;
}

.tag {
    display: inline-block;
    background-color: #e4ebf5;
    color: #2c3e50;
    font-size: 0.8rem;
    padding: 0.3rem 0.7rem;
    margin: 0.2rem 0.2rem 0 0;
    border-radius: 8px;
}

/* === Responsive === */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .role {
        font-size: 1.2rem;
    }

    .company {
        font-size: 0.9rem;
    }

    .description p {
        font-size: 0.9rem;
    }
}
