.works-page {
    min-height: 100vh;
    background-color: #000;
    padding-top: 120px;
    padding-bottom: 100px;
}


/* Hero Section */
.works-hero-section {
    width: var(--content-width);
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.works-hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    margin-bottom: 80px;
    line-height: 1.2;
}

.works-hero-title .highlight {
    color: #4e00ff;
}

.heart-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    opacity: 1;
    transform: translateY(0);
    transition: var(--transition-default);
}

.heart-icon img {
    width: clamp(24px, 2.54vw, 40px);
    height: clamp(20px, 2.18vw, 35px);
    filter: brightness(0) invert(1);
}

/* Projects Grid */
.projects-grid {
    width: var(--content-width);
    margin: var(--spacing-xl) auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--grid-gap);
}

.project-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-default);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.6s ease forwards;
}

.project-card:nth-child(1) {
    animation-delay: 0.1s;
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

.project-card:nth-child(3) {
    animation-delay: 0.3s;
}

.project-card:nth-child(4) {
    animation-delay: 0.4s;
}

.project-card:nth-child(5) {
    animation-delay: 0.5s;
}

.project-card:nth-child(6) {
    animation-delay: 0.6s;
}

.project-card:nth-child(7) {
    animation-delay: 0.7s;
}

.project-card:nth-child(8) {
    animation-delay: 0.8s;
}

.project-card:nth-child(9) {
    animation-delay: 0.9s;
}

.project-card:nth-child(10) {
    animation-delay: 1.0s;
}

.project-card:nth-child(11) {
    animation-delay: 1.1s;
}

.project-card:nth-child(12) {
    animation-delay: 1.2s;
}

.project-card:nth-child(13) {
    animation-delay: 1.3s;
}

.project-card:nth-child(14) {
    animation-delay: 1.4s;
}

.project-card:nth-child(15) {
    animation-delay: 1.5s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.project-card:hover {
    transform: scale(1.02);
}

.project-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.project-card.wide {
    grid-column: span 2;
}

.project-card a {
    display: block;
    width: 100%;
    height: 100%;
}