:root {
    --content-width: min(960px, 100%);
    --main-width: min(900px, 100%);
    --primary-color: #1a4b72;
    --primary-hover: #14395a;
    --secondary-color: #e67e22;
    --accent-color: #1a4b72;
    --text-color: #333333;
    --light-text: #555555;
    --bg-light: #fcf9f3;
    --border-radius: 8px;
    --card-shadow: 0 2px 8px rgba(0,0,0,0.12);
    --hack-super-easy: #00C853;
    --hack-easy: #26A69A;
    --hack-medium: #F39C12;
    --hack-hard: #E74C3C;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
    scroll-behavior: smooth;
}

body {
    font-family: 
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI", 
        Roboto,
        "Helvetica Neue",
        "Arial Unicode MS",
        Arial,
        sans-serif;
    line-height: 1.8;
    margin: 0;
    color: var(--text-color);
    font-size: 20px;
    font-size: clamp(20px, 2.5vw, 24px);
    overflow-x: hidden;
    width: 100%;
    min-width: 250px;
    background: linear-gradient(135deg, #fcf9f3 0%, #f5f1e8 100%);
    
    font-variant-numeric: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.flex-container {
    display: flex;
    align-items: center;
}

.feature-label {
    display: block;
    font-size: 0.75rem;
    color: var(--light-text);
    font-weight: 600;
    letter-spacing: 0.05em;
    background: #eaeaeb;
    padding: 6px 8px;
    border-radius: 8px;
    margin: 0 auto 0.5rem auto;
    text-align: center;
    width: fit-content;
}

h1 {
    font-size: 2.5rem;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    color: var(--text-color);
    text-align: center;
}

.subtitle {
    font-size: 1.25rem;
    font-size: clamp(1.2rem, 2.5vw, 1.4rem);
    color: var(--light-text);
    margin-bottom: 1.2rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: center;
}

h2 {
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 3.2vw, 1.8rem);
    line-height: 1.3;
    margin-top: 2.8rem;
    margin-bottom: 1.2rem;
    letter-spacing: -0.01em;
    color: var(--primary-color);
    font-weight: 600;
}

h2 kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    padding: 0 6px;
    margin-right: 12px;
    box-shadow: var(--card-shadow);
    font-size: 0.9em;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    top: -1px;
    border: 2px solid rgba(255,255,255,0.3);
}

.top-bar {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: var(--primary-color);
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.top-bar-container {
    position: relative;
    width: 100%;
    max-width: var(--content-width);
    padding: 5px 20px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.search-container {
    position: relative;
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.author-details .font-size-btn {
    background: transparent;
    color: #333333;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    min-width: 80px;
    height: 30px;
    margin-left: 1px;
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.author-details .font-size-btn:hover {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.author-details .font-size-btn:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.article-meta .font-size-btn {
    background: transparent;
    color: #333333;
    border: none;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-width: 80px;
    height: 30px;
    flex-shrink: 0;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.2s ease;
    letter-spacing: 0.5px;
}

.article-meta .font-size-btn:hover {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.article-meta .font-size-btn:focus {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

.search-box {
    padding: 8px 12px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    font-size: 14px;
    width: 280px;
    background: rgba(255,255,255,0.15);
    transition: all 0.2s ease;
    color: #ffffff;
}

.search-box::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-box:focus {
    outline: none;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.25);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.social-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e2e8f0;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.1);
}

.social-icon:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.2);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

@media (max-width: 1024px) {
    .top-bar-right {
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .search-container {
        display: none;
    }

    .logo {
        color: var(--primary-color);
        filter: none;
        font-size: 0.85em;
        font-weight: 700;
    }

}

.logo {
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 0.9em;
    font-weight: 700;
    color: #ffffff;
    font-family: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
    letter-spacing: -0.02em;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
    color: inherit;
    height: 100%;
    gap: 0.3em;
}

.logo a:hover {
    text-decoration: none;
    color: inherit;
}

.main-menu {
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.main-menu ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    max-width: 1200px;
}

.main-menu li {
    margin: 0;
    padding: 0;
}

.main-menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 16px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
    margin: 0 2px;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.main-menu a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .main-menu {
        display: none; /* Hide menu on mobile */
    }
}

@media (min-width: 768.01px) and (max-width: 1024px) {
    .main-menu ul {
        height: 40px;
    }
    
    .main-menu a {
        height: 40px;
        padding: 0 12px;
        font-size: 0.9rem;
        margin: 0 1px;
    }
}

.content-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--main-width);
    margin: 0 auto;
    padding: 0 30px;
    box-sizing: border-box;
}

main {
    background-color: transparent;
    padding: 10px 20px;
    border-radius: 0;
    contain: paint layout;
    border: none;
    margin-top: 5px;
}

main p {
    margin-bottom: 1.2em;
    color: var(--text-color);
    font-size: 1.3rem;
    font-size: clamp(1.2rem, 3vw, 1.4rem);
    line-height: 1.7;
    font-weight: 400;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0 20px;
    font-size: 1rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.author-details {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #757575;
}

.author-details b {
    font-weight: 600;
}

.author-date {
    color: #666;
    font-size: 0.9em;
}

.text-divider {
    margin: 0 6px;
    font-size: 0.85em;
    color: #ddd;
}

.hero-image {
    width: 100%;
    height: auto;
    margin-bottom: 2px;
    border-radius: 6px;
    contain: layout;
}

.red-button {
    width: 100%;
    padding: 15px 10px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(230, 126, 34, 0.3);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    touch-action: manipulation;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transition: all 0.2s ease;
    position: relative;
}

.red-button:hover {
    background: linear-gradient(135deg, #d35400 0%, #bf4f0a 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(211, 84, 0, 0.4);
}

.red-button:active {
    background: linear-gradient(135deg, #bf4f0a 0%, #a0460a 100%);
}

a.red-button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 1rem;
    text-decoration: none;
    font-family: inherit;
    line-height: normal;
}

a.red-button:active, 
a.red-button:focus {
    color: #fff;
    text-decoration: none;
}

footer {
    margin: 60px auto 0;
    max-width: var(--content-width);
    padding: 40px 20px;
}

.footer-container {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer-content {
    width: 100%;
    margin: 10px 0 0;
    padding: 10px 20px;
    color: #666;
    text-align: left;
}

.health-claim {
    font-size: 0.85rem;
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    line-height: 1.7;
    margin: 15px 0;
    max-width: 100%;
    text-align: left;
    color: #555;
}

.health-claim b {
    color: #333;
    font-weight: 600;
}

.health-claim:first-of-type {
    margin-top: 0;
}

.health-claim br {
    display: block;
    content: "";
    margin-top: 15px;
}

.footer-links {
    padding: 0 0 5px;
    text-align: center;
    font-size: 0.9rem;
    min-height: 20px;
    color: #666;
}

.footer-links a {
    text-decoration: none;
    margin: 0 15px;
}

.copyright {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    padding: 0 0 10px;
    margin-bottom: 10px;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 15px;
    margin-top: 5px;
}

.hack-meta {
    margin-top: 8px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.hack-meta-basics {
    display: inline-block;
}

.difficulty-badge,
.time-badge {
    color: var(--light-text);
    font-weight: 500;
}

.difficulty-badge.super-easy {
    color: var(--hack-super-easy);
}

.difficulty-badge.easy {
    color: var(--hack-easy);
}

.difficulty-badge.medium {
    color: var(--hack-medium);
}

.difficulty-badge.hard {
    color: var(--hack-hard);
}

/* Helpful voting styles */
.helpful-voting {
    display: inline-block;
    vertical-align: top;
}

.helpful-text {
    color: var(--light-text);
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    font-weight: 500;
}

.helpful-buttons {
    display: inline-block;
    margin-left: 0;
    vertical-align: middle;
}

.helpful-btn {
    display: inline-block;
    background: none;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    color: var(--light-text);
    transition: all 0.2s ease;
    margin-right: 6px;
    vertical-align: middle;
    font-size: 1.1rem;
}

.helpful-btn.helpful-yes:hover {
    background: #e8f5e8;
    border-color: #4caf50;
    color: #2e7d32;
}

.helpful-btn.helpful-no:hover {
    background: #ffeaea;
    border-color: #f44336;
    color: #c62828;
}

.helpful-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
    background: #f9f9f9;
}

.helpful-btn.voted {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

.helpful-icon {
    margin-right: 4px;
}

.helpful-count {
    font-weight: 500;
}

.helpful-thanks {
    color: var(--secondary-color);
    font-weight: 500;
    margin-left: 8px;
}

.time-badge::before {
    content: "";
}

.difficulty-badge .stars {
    margin-right: 4px;
    font-size: 0.85em;
    opacity: 0.8;
}

.offer-image-container {
    position: relative;
    margin: 0 0 10px 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
    border-radius: var(--border-radius);
    background-color: transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.offer-image-container img,
.offer-image-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    object-fit: cover;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 0 5px;
    }
    
    main {
        padding: 20px;
        margin: 10px auto;
    }
    
    h1 { 
        font-size: 2rem;
        font-size: clamp(2rem, 4vw, 2.3rem);
    }
    
    .subtitle {
        font-size: 1.2rem;
        font-size: clamp(1.2rem, 2.5vw, 1.3rem);
        margin-bottom: 0.6rem;
        line-height: 1.5;
    }

    h2 { 
        font-size: 1.7rem;
        font-size: clamp(1.6rem, 3.5vw, 1.8rem);
    }
    
    main p {
        font-size: 1.35rem;
        font-size: clamp(1.3rem, 3.2vw, 1.4rem);
        line-height: 1.7;
        margin-bottom: 1.2em;
    }

    article ul li {
        font-size: 1.35rem;
        font-size: clamp(1.3rem, 3.2vw, 1.4rem);
        line-height: 1.7;
    }

    .footer-links a {
        padding: 10px;
        margin: 0 8px;
    }
    
    .health-claim {
        font-size: 1.05rem;
        font-size: clamp(1rem, 2vw, 1.1rem);
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        max-width: var(--main-width);
    }
    
    main {
        padding: 20px 10px;
    }
}

@media print {
    .main-menu,
    .red-button,
    .sharethis-inline-share-buttons {
        display: none !important;
    }
    
    body, 
    .content-wrapper,
    main {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2 {
        page-break-after: avoid;
    }
    
    img, .offer-image-container {
        page-break-inside: avoid;
        max-width: 100% !important;
    }
    
    a[href^="http"]:after {
        content: " (" attr(href) ")";
        font-size: 90%;
    }
}

.offer-section {
    margin: 3rem 0;
    padding: 1rem 1.2rem;
    background: #fefcf7;
    border: 1px solid #f0ebe0;
    border-radius: var(--border-radius);
    position: relative;
}

.offer-section:last-child {
    border-bottom: none;
}

.offer-section h2 {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0.8rem;
}

.offer-section p {
    position: relative;
    z-index: 1;
    margin-bottom: 1.3rem;
}

@media (prefers-contrast: high) {
    :root {
        --primary-color: #1a4480;
        --text-color: #000000;
        --light-text: #333333;
    }
    
    .offer-section {
        border: 3px solid var(--primary-color);
    }
    
    .red-button {
        border: 2px solid #000000;
    }
}

.red-button:focus,
.main-menu a:focus,
.social-icon:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .offer-section {
        padding: 0.8rem 0.5rem 1.5rem 0.5rem;
        margin: 3rem 0;
    }
    
    main p {
        font-size: 1.4rem;
        font-size: clamp(1.35rem, 3.5vw, 1.45rem);
        line-height: 1.7;
    }
    
    .hack-meta {
        gap: 6px;
        margin-top: 6px;
        margin-bottom: 15px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .hack-meta-basics {
        margin-bottom: 8px;
    }
    
    .helpful-voting {
        display: block;
        margin-left: 0;
        margin-top: 0;
        font-weight: 600;
    }
    
    .helpful-btn {
        font-size: 1.2rem;
        padding: 8px 12px;
        margin-right: 8px;
    }
    
    .helpful-icon {
        font-size: 1.1em;
    }
    
    .helpful-count {
        font-size: 0.9em;
    }
    
    .author-info {
        justify-content: center;
        padding: 5px 0 15px;
        font-size: 0.9rem;
    }
    
    .author-avatar {
        width: 32px;
        height: 32px;
        margin-right: 8px;
    }
    
    .author-details {
        gap: 6px;
        font-size: 0.85rem;
    }
    
    .text-divider {
        margin: 0 4px;
        font-size: 0.8em;
    }
    
    .author-details .font-size-btn {
        margin-left: 0;
        margin-top: 0;
        font-size: 15px;
        padding: 5px 10px;
        min-width: 70px;
        height: 28px;
        gap: 3px;
        letter-spacing: 0.3px;
        background: transparent;
        color: #333333;
        border: none;
    }
}

@supports not (display: grid) {
    .content-wrapper {
        display: block;
    }
}

@supports (-webkit-touch-callout: none) {
    .content-wrapper {
        gap: 0;
    }

    video {
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }

    .red-button {
        -webkit-tap-highlight-color: rgba(0,0,0,0);
    }
}

@-moz-document url-prefix() {
    .red-button {
        background-color: var(--accent-color);
    }
}

@supports not (gap: 20px) {
    .content-wrapper > * + * {
        margin-left: 20px;
    }
    
    .article-meta > * + * {
        margin-left: 12px;
    }
}

center .offer-image-container {
    display: block;
    margin: 0;
    padding: 0;
}

center .offer-image-container video {
    margin-bottom: 0 !important;
}

.page-loaded {
    overflow-anchor: auto;
}

img {
    max-width: 100%;
    height: auto;
}

.hero-image {
    contain: layout;
}

@font-face {
    font-family: 'SystemFont';
    src: local(-apple-system), local(BlinkMacSystemFont);
    font-display: swap;
}

.fonts-loaded {
    text-rendering: optimizeLegibility;
}

.footer-container {
    content-visibility: auto;
    contain-intrinsic-size: 1px 200px;
}

.red-button,
h2 kbd {
    transform: translateZ(0);
    backface-visibility: hidden;
}

@supports (content-visibility: auto) {
    .footer-container {
        content-visibility: auto;
        contain-intrinsic-size: 1px 120px;
    }
    
    .offer-image-container {
        content-visibility: auto;
        contain-intrinsic-size: 1px auto;
    }
    
    .offer-image-container:not(:first-child):not(:nth-child(2)):not(:nth-child(3)) {
        content-visibility: auto;
        contain-intrinsic-size: 1px auto;
    }
}

video {
    object-fit: contain;
    max-width: 100%;
    height: auto !important;
}

hr {
    margin: 1rem 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2.5rem 0;
    color: #777;
    font-size: 0.9em;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.separator::before {
    margin-right: 1em;
}

.separator::after {
    margin-left: 1em;
}

.offer-image-container:last-of-type {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
}

a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@supports not (display: flex) {
    .flex-container {
        display: block;
    }
    
    .flex-container > * {
        display: inline-block;
        vertical-align: middle;
        margin-right: 8px;
    }
    
    .author-details.flex-container > * {
        display: inline-block;
        vertical-align: middle;
    }
}

body.large-font {
    font-size: 24px;
    font-size: clamp(22px, 3vw, 26px);
}

body.large-font main p {
    font-size: 1.5rem;
    font-size: clamp(1.5rem, 3.5vw, 1.6rem);
    line-height: 2;
}

body.large-font h1 {
    font-size: 3.4rem;
    font-size: clamp(2.8rem, 6vw, 4rem);
}

body.large-font .subtitle {
    font-size: 1.6rem;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    line-height: 1.7;
    margin-bottom: 1rem;
}

body.large-font h2 {
    font-size: 2.1rem;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
}

body.large-font .red-button {
    font-size: 1.5em;
    padding: 26px 20px;
    min-height: 75px;
}

body.large-font h2 kbd {
    min-width: 40px;
    height: 40px;
    font-size: 1.1em;
}

body.large-font article ul li {
    font-size: 1.45rem;
    font-size: clamp(1.3rem, 3.5vw, 1.6rem);
    line-height: 2;
}

.author-date {
    color: #666;
    font-style: normal;
    font-size: 1em;
}

article ul {
    margin: 1.2em 0;
    padding-left: 0;
    list-style: none;
}

article ul li {
    position: relative;
    margin-bottom: 0.8em;
    padding-left: 1.8em;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 1.2rem;
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: 400;
}

article ul li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.2em;
    font-weight: bold;
    position: absolute;
    left: 0.5em;
    top: -0.1em;
}

article ul li:last-child {
    margin-bottom: 0;
}

article ul ul {
    margin: 0.8em 0;
    padding-left: 1em;
}

article ul ul li::before {
    content: "◦";
    color: var(--secondary-color);
    font-size: 1em;
}