.student-promo {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    box-sizing: border-box;
    background-color: var(--color-black);
    padding: 4rem 8rem;
}

.student-promo .student-label {
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-semibold);
    display: inline-block;
    text-align: center;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

.student-promo .student-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    line-height: 0;
    text-align: center;
}

.student-promo .student-inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
    margin-top: 4rem;
    align-items: stretch;
}

.student-promo .student-column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    box-sizing: border-box;
}

.student-promo .student-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    color: var(--color-white);
    padding: 2rem;
    border-radius: 30px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.student-promo .student-content:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(-4px);
}

.student-promo .student-title {
    font-size: var(--font-size-md);
    line-height: 1;
    font-weight: var(--font-weight-bold);
    margin: 0;
    text-align: left;
}

.student-promo .student-description {
    font-size: var(--font-size-body-xs);
    color: var(--color-light-gray);
    margin: 0;
    max-width: 370px;
}

.student-promo .student-features {
    list-style: none;
    font-weight: var(--font-weight-regular);
    padding-left: 0;
}

.student-promo .student-feature-title {
    position: relative;
    gap: 0.75rem;
    align-items: center;
    display: flex;
    margin-bottom: 1rem;
    font-size: var(--font-size-body);
}

.student-promo .student-feature-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: inline-block;
    background-color: var(--color-white);
    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-position: center;
    -webkit-mask-position: center;
}

.student-promo .student-feature-description {
    font-size: var(--font-size-body-xs);
    color: var(--color-light-gray);
}

.student-promo .student-image {
    display: flex;
    align-items: center;
}

.student-promo .student-image img {
    width: 100%;
    max-height: 320px;
    object-fit: contain;
    animation: floatY 3s ease-in-out infinite;
}

.student-promo .student-cta-wrapper {
    display: flex;
    width: fit-content;
    flex-direction: row;
    align-items: center;
    margin-top: auto;
    animation: wobble 3s ease 3s infinite;
    animation-fill-mode: both;
}

.student-promo .student-cta-wrapper:hover {
    animation-play-state: paused;
}

.student-promo .student-price-box {
    display: flex;
    flex-direction: column;
    margin: 1rem 0;
}

.student-promo .student-tag-title {
    line-height: 0;
    font-size: var(--font-size-body-2xs);
    opacity: 0.6;
    font-weight: var(--font-weight-light);
}

.student-promo .student-price {
    color: var(--color-secondary);
    font-size: var(--font-size-md);
    line-height: 0;
    font-weight: var(--font-weight-bold);
}

.student-promo .student-disclaimer {
    font-size: var(--font-size-body-2xs);
    opacity: 0.6;
    font-weight: var(--font-weight-light);
    margin: 0.25rem;
}