/* ========================================
   RESUME PAGE - ADDITIONAL STYLES
   Projects Highlight Section
   ======================================== */

/* Projects Highlight Section */
.resume-projects-highlight {
    padding: 6rem 2rem;
    background: var(--bg-primary);
}

.resume-projects-highlight .section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-primary);
}

.projects-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-highlight-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.project-highlight-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-highlight-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.project-highlight-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-link {
    display: inline-flex;
    align-items: center;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.project-link:hover {
    color: var(--accent-secondary);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .resume-projects-highlight {
        padding: 4rem 1.5rem;
    }

    .projects-highlight-grid {
        grid-template-columns: 1fr;
    }
}
