.ga-wrapper {
    background-color: #FAFAFA;
    padding: 120px 5%;
    border-top: 1px solid #E5E7EB;
    font-family: var(--e-global-typography-primary-font-family, 'Inter', sans-serif);
}
.ga-container {
    max-width: 1280px;
    margin: 0 auto;
}
.ga-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 30px;
}
.ga-header-left {
    flex: 1 1 min-content;
}
.ga-subheading {
    color: #B91C1C;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    font-weight: 500;
}
.ga-heading {
    color: #000000;
    font-size: 48px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
}
.ga-header-right {
    flex: 0 1 384px;
}
.ga-desc {
    color: #6B7280;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    max-width: 384px;
}

@media (max-width: 768px) {
    .ga-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .ga-header-right {
        flex: 1 1 100%;
    }
    .ga-desc {
        max-width: 100%;
    }
}

/* CSS Grid for Portfolio */
.ga-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
    column-gap: 24px;
    row-gap: 48px;
}

@media (max-width: 1024px) {
    .ga-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
}
@media (max-width: 600px) {
    .ga-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

/* Grid Span Classes */
.ga-item-small {
    grid-column: span 1;
    grid-row: span 1;
}
.ga-item-wide {
    grid-column: span 2;
    grid-row: span 1;
}
.ga-item-tall {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .ga-item-small, .ga-item-wide, .ga-item-tall {
        grid-column: span 1;
        grid-row: span 1;
    }
}
@media (max-width: 600px) {
    .ga-item-small, .ga-item-wide, .ga-item-tall {
        grid-column: span 1;
        grid-row: auto;
    }
}

.ga-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.ga-img-wrap {
    width: 100%;
    flex: 1;
    min-height: 250px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background-color: #E5E7EB;
}
.ga-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.ga-item:hover .ga-img-wrap img {
    transform: scale(1.05);
}
.ga-item-content {
    margin-top: 16px;
}
.ga-item-title {
    color: #000000;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 4px 0;
    transition: color 0.3s ease;
}
.ga-item:hover .ga-item-title {
    color: #B91C1C;
}
.ga-item-loc {
    color: #9CA3AF;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}