/* #region ========== What We Remove ========== */

.what-we-remove {
    position: relative;
    padding: clamp(50px, 10vw, 55px) 0;
}

.remove-layout {
    display: grid;
    grid-template-columns: 52% 48%;
    gap: 64px;

    align-items: start;

    margin-top: 16px;
}

.remove-list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.remove-media {
    position: sticky;
    top: 120px;

    width: 100%;

    display: flex;
    justify-content: flex-end;
}

.remove-media img {
    max-width: 500px;

    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);

    object-fit: cover;

    transition:
        opacity .35s ease,
        transform .35s ease;
}

.remove-item {
    border-bottom: 1px solid var(--color-border);
}

.remove-toggle {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 16px;

    padding: 10px 0;

    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;

    transition:
        color .25s ease,
        transform .25s ease;
}

.remove-toggle:hover .remove-title {
    color: var(--brand-accent);
    transform: translateX(6px);
}

.remove-toggle:hover .remove-arrow {
    color: var(--brand-accent);
    transform: translateX(10px);
}

.remove-title {
    transition: transform .25s ease, color .25s ease;
    font-size: 1.2rem;
}

.remove-arrow {
    margin-left: auto;
    padding-right: 12px;
    font-size: 1.25rem;
    font-weight: 600;

    transition: transform .25s ease, color .25s ease;
}

.remove-item.open .remove-arrow {
    transform: rotate(90deg);
}

.remove-content {
    max-height: 0;
    overflow: hidden;

    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--color-muted);

    transition:
        max-height .35s ease,
        padding .35s ease;

    padding-left: 42px;
}

.remove-content p {
    margin: 4px 0 0;
}

.remove-content ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.remove-content li {
    margin-bottom: 6px;
}

.remove-item.open .remove-content {
    max-height: 500px;
    padding-top: 5px;
    padding-bottom: 18px;
}


/* #endregion */

/* #region ========== What we don't take ========== */
.remove-restrictions-title {
    font-family: var(--font-display);
    font-size: 1.2rem;      /* Same as .remove-title */
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: 16px;
}

.remove-restrictions {
    position: relative;
    max-width: 760px;
    font-size: 0.9rem;
}

.remove-restrictions-intro {
    color: var(--color-muted);
}

.restriction-list {
    font-size: 0.9rem;
    padding-left: 20px;
    color: var(--color-text);
}

.restriction-list li {
    margin-bottom: 5px;
}

.remove-note {
    margin-top: 12px;
    color: var(--color-muted);
    margin-bottom: 120px;
}

.remove-note strong {
    color: var(--color-heading);
}
/* #endregion */