/* Experience and Education Cards */
.experience-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.experience-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.experience-details h4 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.experience-company {
    color: var(--accent-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.experience-duration {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.experience-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-text {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile */
@media (max-width: 768px) {
    .experience-item {
        flex-direction: column;
        text-align: center;
    }
}
