/* ==========================================================================
   COMPONENTS - Skills, Highlights, etc.
   ========================================================================== */

/* Skills Section */
.skills {
    background: white;
}

.skills-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category {
    margin-bottom: 1.5rem;
}

.skill-category h3 {
    font-family: 'Source Serif Pro', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid #34495e;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.skill-tag {
    background: #ffffff;
    color: #2c3e50;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #34495e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Academic Highlights Section */
.highlights {
    background: white;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.course-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 1.2rem 1.8rem;
    border-radius: 6px;
    border-left: 3px solid #34495e;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.course-name {
    font-weight: 500;
    color: #1a252f;
}

.course-grade {
    font-weight: 600;
    color: #34495e;
    font-size: 0.95rem;
}

/* Animations */
.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

/* Honor Item */
.honor-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-bottom: 1rem;
}

.honor-item h4 {
    font-family: 'Source Serif Pro', serif;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.honor-item p {
    color: #555;
    line-height: 1.6;
}

.honor-item strong {
    color: #2c3e50;
}