    /*
|--------------------------------------------------------------------------
| Figma Article Content Section
|--------------------------------------------------------------------------
|
| This section has natural height.
| Do not add height: 100vh or overflow: hidden to this section or the body.
|
*/

    @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap");
    @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css");

    .figma-article-section {
        --article-purple: #3e3050;
        --article-accent: #a855f7;
        --article-border: #d8d0df;
        --article-light-purple: #f5e8ff;

        position: relative;
        width: 100%;
        padding: clamp(70px, 8vw, 130px) 20px;
        overflow: visible;
        background: #ffffff;
        color: var(--article-purple);
        font-family: "Poppins", sans-serif;
    }

    .figma-article-section,
    .figma-article-section * {
        box-sizing: border-box;
    }

    .figma-article-section__container {
        display: grid;
        grid-template-columns:
            72px minmax(0, 865px) minmax(285px, 337px);
        column-gap: 44px;
        row-gap: 60px;
        width: min(100%, 1362px);
        margin: 0 auto;
    }

    /*
|--------------------------------------------------------------------------
| Left statistics
|--------------------------------------------------------------------------
*/

    .figma-article-section__metrics {
        position: sticky;
        top: 30px;
        align-self: start;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 55px;
        padding-top: 4px;
    }

    .figma-article-section__metric {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 9px;
        text-align: center;
    }

    .figma-article-section__share-trigger {
        padding: 0;
        border: 0;
        background: transparent;
        color: inherit;
        cursor: pointer;
    }

    .figma-article-section__share-trigger:hover,
    .figma-article-section__share-trigger:focus-visible {
        color: var(--article-accent);
    }

    .figma-article-section__share-trigger:focus-visible {
        outline: 2px solid var(--article-accent);
        outline-offset: 7px;
    }

    .figma-article-section__metric>i {
        font-size: 17px;
        line-height: 1;
    }

    .figma-article-section__metric-label {
        display: flex;
        flex-direction: column;
        align-items: center;
        color: var(--article-purple);
        font-size: 13px;
        line-height: 1.45;
        text-transform: lowercase;
    }

    .figma-article-section__metric-label strong {
        font-weight: 500;
    }

    .figma-article-section__metric-socials {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    .figma-article-section__metric-socials a {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        color: var(--article-purple);
        font-size: 15px;
        text-decoration: none;
        transition:
            color 180ms ease,
            transform 180ms ease;
    }

    .figma-article-section__metric-socials a:hover {
        color: var(--article-accent);
        transform: translateY(-2px);
    }

    .figma-article-section__metric-socials span {
        font-size: 12px;
        line-height: 1;
    }

    /*
|--------------------------------------------------------------------------
| Main content
|--------------------------------------------------------------------------
*/

    .figma-article-section__content {
        min-width: 0;
    }

    /*
    | The article body now comes from the admin's rich-text editor, which can
    | place a paragraph, heading, quote, list, or image anywhere in the flow.
    | These rules style by tag inside .figma-article-section__body so every
    | element looks right regardless of where the editor puts it.
    */

    .figma-article-section__body {
        color: var(--article-purple);
        font-size: clamp(16px, 1.05vw, 20px);
        font-weight: 400;
        line-height: 1.58;
        letter-spacing: -0.02em;
    }

    .figma-article-section__body p {
        margin: 0 0 30px;
    }

    .figma-article-section__body > *:last-child {
        margin-bottom: 0;
    }

    .figma-article-section__body h2,
    .figma-article-section__body h3,
    .figma-article-section__body h4 {
        margin: 50px 0 28px;
        color: var(--article-purple);
        font-family: "Playfair Display", serif;
        font-weight: 700;
        letter-spacing: -0.02em;
    }

    .figma-article-section__body h2 {
        font-size: clamp(30px, 2.4vw, 36px);
        line-height: 1.2;
    }

    .figma-article-section__body h3 {
        font-size: clamp(26px, 2vw, 30px);
        line-height: 1.25;
    }

    .figma-article-section__body h4 {
        font-size: clamp(20px, 1.5vw, 23px);
        line-height: 1.3;
    }

    .figma-article-section__body blockquote {
        position: relative;
        margin: clamp(58px, 6vw, 82px) 0;
        padding: 0 0 0 clamp(52px, 6vw, 78px);
        border: 0;
        max-width: 780px;
        color: var(--article-purple);
        font-family: "Playfair Display", serif;
        font-size: clamp(35px, 3.15vw, 60px);
        font-weight: 700;
        line-height: 1.13;
        letter-spacing: -0.02em;
    }

    .figma-article-section__body blockquote::before {
        content: "\201C";
        position: absolute;
        top: -15px;
        left: 0;
        color: #e4e0e8;
        font-family: Georgia, "Times New Roman", serif;
        font-size: clamp(68px, 7vw, 105px);
        font-weight: 700;
        line-height: 1;
    }

    .figma-article-section__body blockquote p {
        margin: 0;
    }

    .figma-article-section__body ul,
    .figma-article-section__body ol {
        margin: 32px 0;
        padding-left: 31px;
    }

    .figma-article-section__body li {
        margin: 7px 0;
        padding-left: 4px;
    }

    .figma-article-section__body img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 40px 0;
        border-radius: 16px;
    }

    .figma-article-section__body figure {
        margin: 40px 0;
    }

    .figma-article-section__body figure img {
        margin: 0 0 12px;
    }

    .figma-article-section__body figcaption {
        color: rgba(62, 48, 80, 0.6);
        font-size: 14px;
        text-align: center;
    }

    .figma-article-section__body a {
        color: var(--article-accent);
    }

    /*
|--------------------------------------------------------------------------
| Right sidebar
|--------------------------------------------------------------------------
*/

    .figma-article-section__sidebar {
        position: sticky;
        top: 30px;
        align-self: start;
        min-width: 0;
        margin-bottom: 75px;
    }

    .figma-article-section__follow {
        margin-bottom: 55px;
    }

    .figma-article-section__follow h3 {
        margin: 0 0 35px;
        color: var(--article-purple);
        font-family: "Playfair Display", serif;
        font-size: clamp(27px, 2vw, 30px);
        font-weight: 700;
        line-height: 1.2;
    }

    .figma-article-section__social-list {
        display: grid;
        grid-template-columns: repeat(5, minmax(30px, 1fr));
        gap: 16px;
        align-items: start;
    }

    .figma-article-section__social-list a {
        display: flex;
        min-width: 0;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        color: var(--article-purple);
        font-size: 25px;
        text-align: center;
        text-decoration: none;
        transition:
            color 180ms ease,
            transform 180ms ease;
    }

    .figma-article-section__social-list a:hover {
        color: var(--article-accent);
        transform: translateY(-3px);
    }

    .figma-article-section__social-list span {
        font-size: 12px;
        font-weight: 400;
        line-height: 1;
    }

    .figma-article-section__newsletter>p {
        margin: 0 0 24px;
        color: var(--article-purple);
        font-size: 16px;
        font-weight: 400;
        line-height: 1.55;
    }

    .figma-article-section__newsletter>p strong {
        font-weight: 500;
    }

    .figma-article-section__email-label {
        display: block;
        width: 100%;
    }

    .figma-article-section__newsletter input[type="email"] {
        display: block;
        width: 100%;
        height: 62px;
        padding: 0 24px;
        border: 1px solid var(--article-purple);
        border-radius: 999px;
        outline: none;
        background: #ffffff;
        color: var(--article-purple);
        font-family: "Poppins", sans-serif;
        font-size: 15px;
        transition:
            border-color 180ms ease,
            box-shadow 180ms ease;
    }

    .figma-article-section__newsletter input[type="email"]::placeholder {
        color: var(--article-purple);
        opacity: 0.8;
    }

    .figma-article-section__newsletter input[type="email"]:focus {
        border-color: var(--article-accent);
        box-shadow: 0 0 0 4px rgba(168, 85, 247, 0.13);
    }

    .figma-article-section__newsletter button {
        display: flex;
        width: 100%;
        height: 62px;
        align-items: center;
        justify-content: center;
        margin-top: 12px;
        padding: 0 24px;
        border: 0;
        border-radius: 999px;
        background: var(--article-accent);
        color: #ffffff;
        cursor: pointer;
        font-family: "Poppins", sans-serif;
        font-size: 14px;
        font-weight: 500;
        letter-spacing: -0.02em;
        text-transform: uppercase;
        transition:
            background-color 180ms ease,
            box-shadow 180ms ease,
            transform 180ms ease;
    }

    .figma-article-section__newsletter button:hover {
        background: #9333ea;
        box-shadow: 0 10px 25px rgba(168, 85, 247, 0.25);
        transform: translateY(-2px);
    }

    .figma-article-section__newsletter-message {
        margin: 0 0 14px !important;
        padding: 10px 12px;
        border: 1px solid;
        border-radius: 6px;
        font-size: 12px;
        line-height: 1.45;
    }

    .figma-article-section__newsletter-message[hidden] {
        display: none;
    }

    .figma-article-section__newsletter button:disabled {
        cursor: wait;
        opacity: 0.7;
        transform: none;
    }

    .figma-article-section__newsletter-message--success {
        border-color: #a9dbc0;
        background: #edf9f1;
        color: #17643a;
    }

    .figma-article-section__newsletter-message--error {
        border-color: #f0b7b7;
        background: #fff0f0;
        color: #a12d2d;
    }

    .figma-article-section__consent {
        display: grid;
        grid-template-columns: 19px minmax(0, 1fr);
        gap: 10px;
        align-items: start;
        margin-top: 20px;
        color: var(--article-purple);
        cursor: pointer;
        font-size: 11px;
        line-height: 1.45;
    }

    .figma-article-section__consent input {
        width: 17px;
        height: 17px;
        margin: 1px 0 0;
        accent-color: var(--article-accent);
    }

    /*
|--------------------------------------------------------------------------
| Bottom sharing bar
|--------------------------------------------------------------------------
*/

    .figma-article-section__sharebar {
        grid-column: 2 / 4;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        width: 100%;
        margin-top: 12px;
    }

    .figma-article-section__share-item {
        display: flex;
        min-height: 70px;
        align-items: center;
        justify-content: center;
        gap: 9px;
        padding: 16px 18px;
        border-bottom: 2px solid #e9ecef;
        color: var(--article-purple);
        font-size: 14px;
        text-decoration: none;
        text-transform: uppercase;
        transition:
            background-color 180ms ease,
            color 180ms ease;
    }

    .figma-article-section__share-item i {
        font-size: 17px;
    }

    .figma-article-section__share-item strong {
        font-weight: 500;
    }

    .figma-article-section__share-item--total {
        justify-content: flex-start;
        text-transform: none;
    }

    .figma-article-section__share-item--facebook {
        border-bottom-color: #3b5998;
    }

    .figma-article-section__share-item--twitter {
        border-bottom-color: #00aced;
    }

    .figma-article-section__share-item--pinterest {
        border-bottom-color: #cd2b32;
    }

    .figma-article-section__share-item--facebook:hover {
        color: #3b5998;
        background: rgba(59, 89, 152, 0.06);
    }

    .figma-article-section__share-item--twitter:hover {
        color: #00aced;
        background: rgba(0, 172, 237, 0.06);
    }

    .figma-article-section__share-item--pinterest:hover {
        color: #cd2b32;
        background: rgba(205, 43, 50, 0.06);
    }

    .article-share-menu[hidden] {
        display: none;
    }

    .article-share-menu {
        position: fixed;
        z-index: 1000;
        inset: 0;
        display: grid;
        place-items: center;
        padding: 20px;
    }

    .article-share-menu__backdrop {
        position: absolute;
        inset: 0;
        border: 0;
        background: rgba(27, 20, 38, 0.45);
        cursor: default;
    }

    .article-share-menu__panel {
        position: relative;
        width: min(100%, 430px);
        padding: 22px;
        border: 1px solid var(--article-border);
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 24px 64px rgba(27, 20, 38, 0.24);
    }

    .article-share-menu__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 18px;
    }

    .article-share-menu__head h2 {
        margin: 0;
        font-family: "Playfair Display", serif;
        font-size: 25px;
        line-height: 1.2;
    }

    .article-share-menu__close {
        display: grid;
        width: 34px;
        height: 34px;
        place-items: center;
        padding: 0;
        border: 0;
        background: transparent;
        color: var(--article-purple);
        cursor: pointer;
        font-size: 29px;
        line-height: 1;
    }

    .article-share-menu__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .article-share-menu__actions a,
    .article-share-menu__actions button {
        display: flex;
        min-height: 46px;
        align-items: center;
        gap: 10px;
        padding: 10px 13px;
        border: 1px solid var(--article-border);
        border-radius: 6px;
        background: #fff;
        color: var(--article-purple);
        cursor: pointer;
        font: 500 13px / 1.25 "Poppins", sans-serif;
        text-align: left;
        text-decoration: none;
        transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
    }

    .article-share-menu__actions a:hover,
    .article-share-menu__actions button:hover,
    .article-share-menu__actions a:focus-visible,
    .article-share-menu__actions button:focus-visible {
        border-color: var(--article-accent);
        background: var(--article-light-purple);
        color: var(--article-accent);
        outline: 0;
    }

    .article-share-menu-open {
        overflow: hidden;
    }

    @media (max-width: 440px) {
        .article-share-menu__actions {
            grid-template-columns: 1fr;
        }
    }

    /*
|--------------------------------------------------------------------------
| Accessibility
|--------------------------------------------------------------------------
*/

    .screen-reader-text {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        padding: 0 !important;
        margin: -1px !important;
        overflow: hidden !important;
        clip: rect(0, 0, 0, 0) !important;
        white-space: nowrap !important;
        border: 0 !important;
    }

    /*
|--------------------------------------------------------------------------
| Smaller desktops
|--------------------------------------------------------------------------
*/

    @media (max-width: 1180px) {
        .figma-article-section__container {
            grid-template-columns:
                58px minmax(0, 1fr) minmax(260px, 310px);
            column-gap: 30px;
        }

        .figma-article-section__body blockquote {
            padding-left: 58px;
        }
    }

    /*
|--------------------------------------------------------------------------
| Tablet
|--------------------------------------------------------------------------
*/

    @media (max-width: 980px) {
        .figma-article-section {
            padding-right: 24px;
            padding-left: 24px;
        }

        .figma-article-section__container {
            grid-template-columns: 58px minmax(0, 1fr);
            column-gap: 28px;
        }

        .figma-article-section__metrics {
            grid-column: 1;
            grid-row: 1;
        }

        .figma-article-section__content {
            grid-column: 2;
            grid-row: 1;
        }

        .figma-article-section__sidebar {
            position: static;
            grid-column: 2;
            display: grid;
            grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
            gap: 45px;
            margin-bottom: 0px;
            align-items: start;
        }

        .figma-article-section__follow {
            margin-bottom: 0;
        }

        .figma-article-section__sharebar {
            grid-column: 2;
        }
    }

    /*
|--------------------------------------------------------------------------
| Mobile
|--------------------------------------------------------------------------
*/

    @media (max-width: 700px) {
        .figma-article-section {
            padding: 60px 18px 75px;
        }

        .figma-article-section__container {
            display: flex;
            flex-direction: column;
            gap: 48px;
        }

        .figma-article-section__metrics {
            position: static;
            order: 1;
            display: flex;
            width: 100%;
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: center;
            gap: 25px 38px;
            padding: 0 0 28px;
            border-bottom: 1px solid #e5e1e9;
        }

        .figma-article-section__metric {
            min-width: 65px;
        }

        .figma-article-section__metric-socials {
            flex-direction: row;
            gap: 25px;
        }

        .figma-article-section__content {
            order: 2;
        }

        .figma-article-section__sidebar {
            order: 3;
            display: block;
        }

        .figma-article-section__sharebar {
            order: 4;
        }

        .figma-article-section__body {
            font-size: 16px;
            line-height: 1.7;
        }

        .figma-article-section__body blockquote {
            margin: 55px 0;
            padding-left: 44px;
            font-size: clamp(32px, 9vw, 42px);
            line-height: 1.12;
        }

        .figma-article-section__body blockquote::before {
            top: -8px;
            font-size: 72px;
        }

        .figma-article-section__follow {
            margin-bottom: 45px;
        }

        .figma-article-section__social-list {
            max-width: 380px;
        }

        .figma-article-section__sharebar {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .figma-article-section__share-item--total {
            justify-content: center;
        }
    }

    /*
|--------------------------------------------------------------------------
| Very small mobile
|--------------------------------------------------------------------------
*/

    @media (max-width: 420px) {
        .figma-article-section {
            padding-right: 15px;
            padding-left: 15px;
        }

        .figma-article-section__metrics {
            justify-content: flex-start;
            gap: 22px;
        }

        .figma-article-section__body blockquote {
            padding-left: 34px;
            font-size: 31px;
        }

        .figma-article-section__social-list {
            gap: 9px;
        }

        .figma-article-section__social-list a {
            font-size: 21px;
        }

        .figma-article-section__newsletter input[type="email"],
        .figma-article-section__newsletter button {
            height: 58px;
        }

        .figma-article-section__share-item {
            min-height: 62px;
            padding: 13px 8px;
            font-size: 12px;
        }
    }
