#landing {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    
    width: 100%;
    gap: var(--padding, 0);
}

.landing-content,
.landing-cards {
    width: 100%;
}

.landing-content {
    justify-content: space-between;
    flex-shrink: 0;
    max-width: 37.5rem;
    gap: 32px;
}

.landing-availability[data-active="0"] { --accent: 222, 128, 128; }
.landing-availability[data-active="1"] { --accent: 48, 117, 160; }

.landing-availability {
    color: rgb(var(--accent, 0, 0, 0));
    background-color: rgba(var(--accent, 0, 0, 0), 0.05);
    border-radius: 32px;
    
    font-weight: 600;
    font-size: 1rem;
    
    white-space: nowrap;
    position: relative;
    
    line-height: 48px;
    letter-spacing: var(--letter-spacing, 0);
    
    height: 48px;
    padding: 0 24px;
    padding-left: 40px;
    padding-top: 0.075em;
}

.landing-availability::before {
    content: "";
    position: absolute;
    
    border: 3px solid rgb(var(--accent, 0, 0, 0));
    border-radius: 3px;
    
    top: 24px;
    left: 24px;
    
    width: 0;
    height: 0;
    
    transform: translate(-50%, -50%);
}

.landing-title {
    font-weight: 900;
    font-size: min(8.75rem, calc((100vw - var(--padding, 0) * 2) / 4.15));
    
    line-height: 0.75;
    letter-spacing: calc(var(--letter-spacing, 0) * 0.5);
}

.landing-paragraph {
    font-weight: 400;
    font-size: 1rem;
    
    line-height: 1.5;
    letter-spacing: var(--letter-spacing, 0);
}

.landing-cards {
    flex-wrap: wrap;
    
    flex-shrink: 1;
    flex-grow: 0;
    
    width: 832px;
    height: calc(48px + 315px + 48px + var(--button-height, 0) + 32px * 3);
    
    gap: 16px;
}

.landing-card {
    background-color: rgb(242, 242, 245);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    padding: 32px;
}

.landing-card[data-type="profile"],
.landing-card[data-type="headshot"] {
    height: calc(60% - 16px / 2);
}

.landing-card[data-type="profile"] {
    width: calc(45% - 16px / 2);
}

.landing-card[data-type="headshot"] {
    overflow: visible;
    width: calc(55% - 16px / 2);
}

.landing-card[data-type="slideshow"],
.landing-card[data-type="socials"] {
    height: calc(40% - 16px / 2);
}

.landing-card[data-type="slideshow"] {
    width: calc(65% - 16px / 2);
}

.landing-card[data-type="socials"] {
    background-color: transparent;
    width: calc(35% - 16px / 2);
    padding: 0;
    gap: 16px;
}

@keyframes slide-up-overlay {
    from {
        -o-object-position: center 48px;
        object-position: center 48px;
    }
    to {
        -o-object-position: center 0%;
        object-position: center 0%;
    }
}

@keyframes slide-up-underlay {
    from {
        -o-object-position: center 0%;
        object-position: center 0%;
    }
    to {
        -o-object-position: center calc(0% - 48px);
        object-position: center calc(0% - 48px);
    }
}

.landing-card-headshot-underlay,
.landing-card-headshot-overlay {
    --animation: 1s ease forwards;
    
    position: absolute;
    
    -o-object-position: center 0%;
    object-position: center 0%;

    left: 0;

    width: 100%;
    height: 100%;
}

.landing-card-headshot-underlay {
    background-color: #3f3c39;
    border-radius: 24px;
    
    -o-object-position: center calc(0% - 48px);
    object-position: center calc(0% - 48px);
    
    top: 0;
    animation: slide-up-underlay var(--animation, 0ms);
}

.landing-card-headshot-overlay {
    top: -48px;
    height: calc(100% + 48px);
    animation: slide-up-overlay var(--animation, 0ms);
}

.landing-card-profile {
    gap: 12px;
}

.landing-card-profile-name,
.landing-card-profile-role {
    white-space: nowrap;
    margin-top: -0.25em;
    margin-bottom: -0.45em;
}

.landing-card-profile-name {
    font-weight: 600;
    font-size: 1.75rem;
}

.landing-card-profile-role {
    font-weight: 400;
    font-size: 1rem;
}

.landing-card-link {
    color: rgb(0, 0, 0);
    background-color: rgb(242, 242, 245);
    border-radius: 24px;
    
    position: relative;
    
    width: 100%;
    height: 100%;
    
    transition: border-radius var(--transition, 0ms);
}

.landing-card-link:hover {
    border-radius: 50.3px;
}

.landing-card-link-icon {
    position: absolute;
    overflow: hidden;
    border-radius: calc(8px);
    
    top: 50%;
    left: 50%;
    
    width: 34px;
    height: 34px;

    transform: translate(-50%, -50%) scale(1);
    transition: transform var(--transition, 0ms);
}

.landing-card-link:hover > .landing-card-link-icon {
    transform: translate(-50%, -50%) scale(1.25);
}

@media (max-width: 1500px) {
    #landing {
        flex-wrap: wrap-reverse;
    }
    
    .landing-cards {
        width: 100%;
    }
}