/* ===== GLOBAL / BASE STYLES (from original + enhancements) ===== */
.image {
    height: 100%;
    width: 100%;
}

/* alternating background for education sections (kept for visual consistency) */
.education_section:nth-of-type(1) {
    background-color: rgba(0, 0, 0, 0.03);
}
.education_section:nth-of-type(2) {
    background-color: rgba(0, 0, 0, 0.05) !important;
}
.education_section:nth-of-type(3) {
    background-color: rgba(0, 0, 0, 0.07) !important;
}
.education_section:nth-of-type(4) {
    background-color: rgba(0, 0, 0, 0.09) !important;
}

/* ===== IMPROVED DIPLOMA LAYOUT: date on right, slightly below text ===== */
/* container for each diploma row - use flex to separate date & title */
.diploma-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.85rem;
    line-height: 1.5;
}
/* date styling: displayed on the right side, with a small top offset to sit "slightly below" the text */
.diploma-date {
    font-weight: 600;
    color: #212931;
    letter-spacing: 0.02em;
    /* slight downward shift relative to the title */
    transform: translateY(2px);
    display: inline-block;
    font-size: 0.95rem;
    background: none;
    white-space: nowrap;
    margin-left: 1rem;
}
/* title (diploma name / link) - left side, strong appearance */
.diploma-title {
    font-weight: 500;
    color: #212931;
    text-align: left;
    flex: 1;
    font-size: 1rem;
    line-height: 1.4;
}
.diploma-title a {
    border-bottom: dotted 1px rgba(33, 41, 49, 0.5);
    text-decoration: none;
    color: #212931;
    transition: color 0.2s ease-in-out, border-color 0.2s;
}
.diploma-title a:hover {
    color: #18bfef !important;
    border-bottom-color: transparent;
}
/* additional style for the paragraph wrapper inside inner content */
.diploma-list {
    margin: 0.5rem 0 1.2rem 0;
}
/* ensure spacing between diploma entries is clear */
.education-diploma-group {
    margin-top: 0.25rem;
}
/* fix for potential break on very small screens: dates stack gracefully */
@media screen and (max-width: 600px) {
    .diploma-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .diploma-date {
        white-space: normal;
        margin-left: 0;
        margin-top: 0.25rem;
        transform: translateY(0);
        font-size: 0.85rem;
    }
    .diploma-title {
        margin-bottom: 0.1rem;
    }
}

/* button positioning: keep original btn-center style but ensure it doesn't overlap */
.btn-center {
    margin-left: 100%;
}
@media screen and (max-width: 1280px) {
    .btn-center {
        margin-left: 0%;
    }
}
/* actions spacing */
ul.actions {
    margin-top: 1rem;
}
/* optional: tiny spacing for headings */
.content .inner h2 {
    margin-bottom: 0.75rem;
}
/* ensure consistent background for UPEC / ISSATSO sections - no conflicts */
.education_section .content p {
    margin-bottom: 0.8rem;
}