@media (max-width: 1024px) {
    #wall-of-fame {
        padding: 10vh 5vw;
    }

    .wall-container {
        flex-direction: column;
        gap: 3rem;
    }

    .wall-left,
    .wall-right {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        padding: 0;
    }

    .wall-center {
        order: -1;
        margin-bottom: 2rem;
    }

    .frame-wrapper {
        width: 180px;
        height: 250px;
    }

    .wall-left .frame-wrapper:nth-child(odd),
    .wall-left .frame-wrapper:nth-child(even),
    .wall-right .frame-wrapper:nth-child(odd),
    .wall-right .frame-wrapper:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 768px) {
    .frame-wrapper {
        width: 140px;
        height: 200px;
    }

    .wall-heading {
        font-size: clamp(50px, 12vw, 80px);
    }
}
