/* Experience page specific styles */
.experience-page-title {
    color: var(--gold);
    display: block;
    text-align: center;
    padding-bottom: 5px;
    margin-top: 40px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.8rem;
    font-weight: bold;
    width: fit-content;
}

.page-subtitle {
    color: var(--off-white);
    text-align: center;
    margin-bottom: 20px;
    opacity: 0.8;
    font-size: 1.1rem;
}

.experience-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    padding: 0 20px;
}

.experience-intro-text {
    color: var(--off-white);
    line-height: 1.6;
    font-size: 1.05rem;
    opacity: 0.9;
}

.experience-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.content-title {
    color: var(--gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.content-organization {
    color: var(--off-white);
    margin-top: 5px;
    font-weight: 500;
}

.content-date {
    color: var(--off-white);
    font-size: 0.9rem;
    margin-top: 5px;
    opacity: 0.8;
    font-style: italic;
}

.content-description {
    color: var(--off-white);
    margin-top: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .experience-container {
        padding: 10px;
    }
    
    .experience-intro {
        padding: 0 15px;
    }
}