/* Experiences page specific styles */
.experience-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.experience-detail h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.experience-card {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.experience-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.experience-header {
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

.experience-card h2 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.3rem;
}

.experience-card .company {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 0;
}

.experience-card .duration {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.2rem;
}

.experience-card .location {
    font-size: 0.9rem;
    color: #888;
}

.responsibilities {
    margin-bottom: 1.5rem;
}

.responsibilities h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.responsibilities ul {
    list-style: none;
    padding: 0;
}

.responsibilities li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.responsibilities li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #888;
    font-weight: bold;
}

.skills-tag {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin: 0.2rem 0.3rem 0.2rem 0;
    border: 1px solid #888;
} 