@media (min-width: 1025px) {
    #about-the-fold {
        box-sizing: border-box;
        position: relative;
        max-width: 960px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        overflow: hidden;

        .about-the-fold__background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 20%;
            z-index: 0;
        }

        .about-the-fold__foreground {
            box-sizing: border-box;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: var(--gap-positive-400);
            align-items: center;
            z-index: 1;
            transform: translateY(100%);
            animation: emphasis-fly-in--up 1000ms cubic-bezier(0.25, 1, 0.5, 1) 2200ms forwards;
        }

        .about-the-fold__avatar {
            position: relative;
            width: 160px;
            height: 160px;
            overflow: hidden;
            border-radius: var(--shape-full);

            .avatar__frame {
                position: absolute;
                top: 0;
                left: 0;
                width: 160px;
                height: 160px;
            }

            img {
                position: absolute;
                width: 140px;
                height: 140px;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                object-fit: fill;
            }
        }

        .about-the-fold__greeting {
            font: var(--typography-desktop-title-hero);
            background-image: linear-gradient(
                to right,
                var(--theme-gradient-1),
                var(--theme-gradient-2),
                var(--theme-gradient-3)
            );
            background-clip: text;
            color: transparent;
        }

        .about-the-fold__location {
            display: flex;
            gap: var(--gap-positive-300);
            align-items: center;

            .location__icon {
                width: var(--icon-size-medium);
                height: var(--icon-size-medium);
            }

            .location__city {
                font: var(--typography-desktop-heading);
                color: var(--theme-on-surface-shade-1);
            }
        }

        .about-the-fold__personal-statement {
            width: 100%;
            font: var(--typography-desktop-subheading);
            text-align: center;
            color: var(--theme-on-surface-tint-1);
        }
    }
}

@media (min-width: 641px) and (max-width: 1024px) {
    #about-the-fold {
        box-sizing: border-box;
        position: relative;
        max-width: 960px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 var(--gap-positive-700);
        overflow: hidden;

        .about-the-fold__background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 20%;
            z-index: 0;
        }

        .about-the-fold__foreground {
            box-sizing: border-box;
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: var(--gap-positive-400);
            align-items: center;
            z-index: 1;
            transform: translateY(100%);
            animation: emphasis-fly-in--up 1000ms cubic-bezier(0.25, 1, 0.5, 1) 2200ms forwards;
        }

        .about-the-fold__avatar {
            position: relative;
            width: 160px;
            height: 160px;
            overflow: hidden;
            border-radius: var(--shape-full);

            .avatar__frame {
                position: absolute;
                top: 0;
                left: 0;
                width: 160px;
                height: 160px;
            }

            img {
                position: absolute;
                width: 140px;
                height: 140px;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                object-fit: fill;
            }
        }

        .about-the-fold__greeting {
            font: var(--typography-tablet-title-hero);
            background-image: linear-gradient(
                to right,
                var(--theme-gradient-1),
                var(--theme-gradient-2),
                var(--theme-gradient-3)
            );
            background-clip: text;
            color: transparent;
        }

        .about-the-fold__location {
            display: flex;
            gap: var(--gap-positive-300);
            align-items: center;

            .location__icon {
                width: var(--icon-size-small);
                height: var(--icon-size-small);
            }

            .location__city {
                font: var(--typography-tablet-heading);
                color: var(--theme-on-surface-shade-1);
            }
        }

        .about-the-fold__personal-statement {
            width: 100%;
            font: var(--typography-tablet-subheading);
            text-align: center;
            color: var(--theme-on-surface-tint-1);
        }
    }
}

@media (max-width: 640px) {
    #about-the-fold {
        box-sizing: border-box;
        position: relative;
        width: 100%;
        display: flex;
        padding: 0 var(--gap-positive-600);
        align-items: flex-start;
        overflow: hidden;

        .about-the-fold__background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 20%;
            z-index: 1;
        }

        .about-the-fold__foreground {
            width: 100%;
            display: flex;
            flex-direction: column;
            gap: var(--gap-positive-300);
            align-items: center;
            transform: translateY(100%);
            z-index: 1;
            animation: emphasis-fly-in--up 1000ms cubic-bezier(0.25, 1, 0.5, 1) 2200ms forwards;
        }

        .about-the-fold__avatar {
            position: relative;
            width: 120px;
            height: 120px;
            overflow: hidden;
            border-radius: var(--shape-full);

            .avatar__frame {
                position: absolute;
                top: 0;
                left: 0;
                width: 120px;
                height: 120px;
            }

            img {
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 100px;
                height: 100px;
                object-fit: fill;
            }
        }

        .about-the-fold__greeting {
            font: var(--typography-mobile-title-hero);
            background-image: linear-gradient(
                to right,
                var(--theme-gradient-1),
                var(--theme-gradient-2),
                var(--theme-gradient-3)
            );
            background-clip: text;
            color: transparent;
        }

        .about-the-fold__location {
            display: flex;
            gap: var(--gap-positive-300);
            align-items: center;

            .location__icon {
                width: var(--icon-size-extra-small);
                height: var(--icon-size-extra-small);
            }

            .location__city {
                font: var(--typography-mobile-heading);
                color: var(--theme-on-surface-shade-1);
            }
        }

        .about-the-fold__personal-statement {
            width: 100%;
            font: var(--typography-mobile-subheading);
            text-align: center;
            color: var(--theme-on-surface-tint-1);
        }
    }
}
