/* =========================================================
   Terms of Use Page
   Figma: standalone card layout on white bg with decorative blurs.
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
.lc-terms {
    --t-navy-005: rgba(32, 42, 77, 0.05);
    --t-text: #0A0A09;
    --t-bg: #FFFFFF;
    --t-radius: 10px;
}

/* ── Page wrapper ──────────────────────────────────────── */
.lc-terms {
    position: relative;
    background: var(--t-bg);
    overflow: hidden;
    min-height: 100vh;
}

/* ── Decorative blurred shapes ─────────────────────────── */
.lc-terms__deco {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
    filter: blur(103px);
    z-index: 0;
}

.lc-terms__deco--1 {
    width: 838px;
    height: 638px;
    top: 220px;
    left: -580px;
    background: var(--t-bg);
}

.lc-terms__deco--2 {
    width: 838px;
    height: 455px;
    bottom: 400px;
    left: 260px;
    background: var(--t-bg);
}

.lc-terms__deco--3 {
    width: 365px;
    height: 278px;
    top: 560px;
    right: -170px;
    background: var(--t-bg);
}

/* ── Container ─────────────────────────────────────────── */
.lc-terms__container {
    position: relative;
    z-index: 1;
    padding: 100px 100px 50px;
}

/* ── Card ──────────────────────────────────────────────── */
.lc-terms__card {
    background: var(--t-bg);
    padding: 82px 0 48px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ── Header / Title ────────────────────────────────────── */
.lc-terms__header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lc-terms__title {
    margin: 0;
    font-family: 'Red Rose', serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 1.25;
    text-transform: capitalize;
    text-align: center;
    color: var(--t-text);
    padding: 20px 0px;
}

/* ── Body (sections wrapper) ──────────────────────────── */
.lc-terms__body {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* ── Section ──────────────────────────────────────────── */
.lc-terms__section {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lc-terms__heading {
    margin: 0;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.25;
    color: var(--t-text);
}

/* ── Content ──────────────────────────────────────────── */
.lc-terms__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lc-terms__content p {
    margin: 0;
    padding-left: 24px;
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    text-align: justify;
    color: var(--t-text);
}

.lc-terms__content ul {
    margin: 0;
    padding-left: 24px;
    list-style: disc;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lc-terms__content li {
    font-family: 'Encode Sans Expanded', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.375;
    text-align: justify;
    color: var(--t-text);
    padding-left: 8px;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
    .lc-terms__container {
        padding: 80px 40px 40px;
    }
}

@media (max-width: 768px) {
    .lc-terms__container {
        padding: 80px 20px 30px;
    }

    .lc-terms__card {
        padding: 20px 16px;
        /* gap: 28px; */
    }

    .lc-terms__title {
        font-size: 26px;
    }

    .lc-terms__heading {
        font-size: 18px;
    }

    .lc-terms__content p,
    .lc-terms__content li {
        font-size: 15px;
        padding-left: 16px;
    }

    .lc-terms__content ul {
        padding-left: 16px;
    }

    .lc-terms__body {
        gap: 28px;
    }

    .lc-terms__deco {
        display: none;
    }
}