:root {
    --b: rgba(122, 90, 67, .95);
    --t: #111;
    --m: rgba(0, 0, 0, .55);
    --ln: rgba(0, 0, 0, .10);
    --sh: 0 18px 55px rgba(0, 0, 0, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Nunito", system-ui, sans-serif;
    color: var(--t);
    background: #fff;
}

/* wrapper */
.ts-wrap {
    width: min(1200px, calc(100% - 72px));
    margin: 0 auto;
}

@media(max-width:560px) {
    .ts-wrap {
        width: calc(100% - 32px);
    }
}

/* hero */
.ts-hero {
    padding: 54px 0 34px;
    background:
        radial-gradient(900px 220px at 18% 0%, rgba(122, 90, 67, .20), transparent 55%),
        radial-gradient(900px 220px at 82% 0%, rgba(0, 0, 0, .10), transparent 60%),
        #fff;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.ts-heroBox {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 26px;
    box-shadow: var(--sh);
    padding: 18px;
    text-align: center;
}

.ts-brand {
    margin: 0 0 6px;
    font-weight: 1000;
    letter-spacing: .25px;
    color: rgba(0, 0, 0, .55);
    text-transform: uppercase;
    font-size: 12px;
}

.ts-title {
    margin: 0 0 10px;
    font-size: 42px;
    font-weight: 1000;
}

.ts-desc {
    margin: 0;
    color: var(--m);
    font-weight: 800;
    max-width: 820px;
    margin-inline: auto;
}

.ts-metaRow {
    margin-top: 14px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.ts-metaPill {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .70);
    font-weight: 1000;
    font-size: 13px;
}

/* main */
.ts-main {
    padding: 26px 0 80px;
}

.ts-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 20px;
    align-items: start;
}

@media(max-width:980px) {
    .ts-layout {
        grid-template-columns: 1fr;
    }
}

/* sidebar */
.ts-side {
    position: sticky;
    top: 18px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media(max-width:980px) {
    .ts-side {
        position: static;
    }
}

.ts-panel {
    background: #fff;
    border: 1px solid var(--ln);
    border-radius: 26px;
    box-shadow: var(--sh);
    padding: 16px;
}

.ts-panelHead h3 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 1000;
}

.ts-panelHead p {
    margin: 0 0 12px;
    color: var(--m);
    font-weight: 800;
    font-size: 13px;
}

.ts-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ts-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(0, 0, 0, .02);
    color: rgba(0, 0, 0, .70);
    font-weight: 1000;
}

.ts-link:hover {
    background: rgba(0, 0, 0, .05);
}

.ts-link.is-current {
    background: rgba(122, 90, 67, .14);
    border-color: rgba(122, 90, 67, .22);
    color: rgba(70, 45, 30, .95);
}

.ts-cta {
    margin-top: 12px;
    height: 46px;
    border-radius: 999px;
    border: 2px solid rgba(122, 90, 67, .95);
    background: transparent;
    color: rgba(122, 90, 67, .95);
    font-weight: 1000;
    font-family: "Nunito", sans-serif;
    text-decoration: none;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: .25s ease;
}

.ts-cta:hover {
    background: rgba(122, 90, 67, .95);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(122, 90, 67, .35);
}

.ts-cta:active {
    transform: translateY(0);
}

.ts-tip {
    background: rgba(0, 0, 0, .03);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 22px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.ts-tip i {
    margin-top: 2px;
    color: rgba(0, 0, 0, .65);
}

.ts-tip p {
    margin: 0;
    color: rgba(0, 0, 0, .70);
    font-weight: 800;
    line-height: 1.55;
}

/* content */
.ts-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ts-block {
    background: #fff;
    border: 1px solid var(--ln);
    border-radius: 26px;
    box-shadow: var(--sh);
    padding: 18px;
}

.ts-hline {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.ts-badge {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 1000;
    background: rgba(0, 0, 0, .06);
    border: 1px solid rgba(0, 0, 0, .08);
    color: rgba(0, 0, 0, .70);
}

.ts-block h2 {
    margin: 0;
    font-size: 18px;
    font-weight: 1000;
}

.ts-block p {
    margin: 0;
    color: rgba(0, 0, 0, .70);
    font-weight: 800;
    line-height: 1.75;
}

.ts-list {
    margin: 0;
    padding-left: 18px;
    color: rgba(0, 0, 0, .70);
    font-weight: 800;
    line-height: 1.75;
}

.ts-list li {
    margin: 6px 0;
}

.ts-callout {
    margin: 10px 0 10px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid rgba(122, 90, 67, .20);
    background: rgba(122, 90, 67, .08);
}

.ts-callout i {
    margin-top: 2px;
    color: rgba(0, 0, 0, .70);
}

.ts-callout strong {
    display: block;
    font-weight: 1000;
    margin-bottom: 2px;
}

.ts-callout p {
    margin: 0;
    color: rgba(0, 0, 0, .65);
    font-weight: 800;
}

.ts-inline {
    display: inline-block;
    margin-top: 10px;
    font-weight: 1000;
    color: rgba(0, 0, 0, .70);
    text-decoration: underline;
}

.ts-footerNote {
    margin-top: 6px;
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .08);
    background: rgba(0, 0, 0, .02);
    color: rgba(0, 0, 0, .68);
    font-weight: 1000;
}

.head {
    font-family: "Italiana", serif;
}
