/* Experience Page Styling */

.experience-page {
    max-width: var(--page-width, 65em);
    margin: 0 auto;
}

.experience-header {
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--secondary-color, #a3abba);
}

.experience-header h1 {
    margin-bottom: 30px;
}

/* Resume Download Section */
.experience-page .resume-download-section {
    margin: 40px 0;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid var(--secondary-color, #a3abba);
    border-bottom: 1px solid var(--secondary-color, #a3abba);
}

/* Resume Download Button */
.experience-page .resume-download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: #fff;
    color: #000;
    border: 2px solid #000;
    text-decoration: none;
    font-weight: 600;
    font-size: 1em;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.experience-page .resume-download-btn:hover {
    background-color: #000;
    color: #fff;
}

.experience-page .resume-download-btn i {
    font-size: 1.1em;
}

/* Experience Content Styling */
.experience-page h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.2em;
    font-weight: bold;
    padding-bottom: 0;
    border-bottom: none;
}

.experience-page > h2:first-of-type {
    margin-top: 0;
}

.experience-page p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1em;
}

/* Intro paragraph */
.experience-page h2 + p {
    margin-bottom: 30px;
    font-style: italic;
}

/* Company name styling - first strong in paragraph */
.experience-page p strong:first-child {
    display: block;
    margin-bottom: 4px;
    margin-top: 25px;
    font-size: 1em;
    font-weight: bold;
}

/* Job title styling - second strong in paragraph */
.experience-page p strong:first-child + strong {
    font-size: 1em;
    font-weight: bold;
    display: inline;
}

/* Description paragraph after job title */
.experience-page p strong:first-child + p {
    margin-top: 0;
    margin-bottom: 5px;
    font-weight: normal;
}

.experience-page hr {
    margin: 30px 0;
    border: none;
    border-top: 1px solid var(--secondary-color, #a3abba);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .experience-page .resume-download-section {
        padding: 20px 0;
    }
    
    .experience-page .resume-download-btn {
        padding: 10px 20px;
        font-size: 0.95em;
    }
}
