
    :root { 
        --yellow: #FFDF5B; 
        --lightyellow: #FFF8C9;
        --black: #111111;
        --lightblack: #333333;
        --verylightblack: #E5E5E5;
        --red: #FF5B5B;
    }
    
    body { 
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 20px;
        line-height: 1.1;
    }

    
    .yellow { background-color: var(--yellow); color: black;}
    .lightyellow { background-color: var(--lightyellow); color: black;}

    body { margin: 15px; padding: 0; font-size: 20px; font-family: 'Plus Jakarta Sans', sans-serif; }
    a { color: inherit; }
    p { margin-bottom: 2f0px; max-width: 700px; }
    ol li { margin-bottom: 40px; max-width: 600px; }


    h1, h2, h3, h4, h5, h6 { font-family: 'Plus Jakarta Sans', sans-serif; margin-top: 0; margin-top: 30px; }
    h1 { font-size: clamp(40px, 4vw, 4vw); line-height: 1.0; margin-bottom: 15px; margin-top: 0; }
    h1 .subtitle { font-weight: 200; }
    h1 + .description { font-size: 32px; font-weight: 200; max-width: 900px; }

    h2 { font-size: clamp(32px, 4vw, 40px); margin-top: 100px; }
    h3 { font-size: clamp(24px, 3vw, 30px); margin-top: 100px; }
    h4 { font-size: clamp(20px, 2vw, 20px); margin-top: 100px; text-transform: uppercase; }
    h5 { font-size: clamp(18px, 2vw, 18px); margin-top: 100px; text-transform: uppercase; }
    
    .container { width: 100%; max-width: none; }
    .container > div { padding: 15px; max-width: 1200px; margin: 0 auto; }
    
    @media screen and (min-width: 1100px) {
        .cols3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
    }



    div.hero { padding-top: 100px; margin-bottom: 100px; }
    @media screen and (min-width: 1100px) {
        .hero.withimage { display: grid; grid-template-columns: 2fr 1fr; column-gap: 30px; }
        .hero.withimage .image { margin-top: 0px; overflow-y: visible; height: 1px; }
    
    }
    @media screen and (max-width: 1100px) {
        .hero.withimage { display: flex; flex-direction: column-reverse; }
        .hero.withimage .image { margin-bottom: 50px; }
    }
    .hero.withimage .image img { width: 100%; max-width: 600px; }
    

    .tags { display: flex; gap: 10px; flex-wrap: wrap; }
    .tags .tag { background: var(--lightyellow); color: black; padding: 6px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border-radius: 12px; }
    
    .card {
        display: flex;
        flex-direction: column;
        border: 4px solid var(--black);
        background: white;
        border-radius: 12px;
        overflow: hidden;
        text-decoration: none;
        color: var(--black);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        max-width: 500px;
        margin-bottom: 30px;
    }

    
    .card:hover {
        transform: translateY(-4px);
        box-shadow: 8px 8px 0 var(--black);
    }
    .card .cover {
        position: relative;
        aspect-ratio: 16 / 16;
        background: var(--yellow);
        overflow: hidden;
    }
    .card .cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .card .cover .placeholder {
        width: 100%;
        height: 100%;
        background: var(--yellow);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        font-weight: 700;
        color: var(--black);
    }

    .card .cover .label { position: absolute; top: 26; left: 0; 
        background: var(--black); color: white; padding: 6px 12px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

    .card .meta {
        padding: 24px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .card .title {
        font-size: 22px;
        font-weight: 700;
        line-height: 1.25;
        margin: 0 0 12px 0;
    }
    .card:hover .title {
        text-decoration: underline;
    }

    .card .description {
        font-size: 18px;
        line-height: 1.5;
        color: var(--lightblack);
        margin: 0 0 16px 0;
        flex: 1;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .card .src {
        font-size: 14px;
        color: var(--lightblack);
        margin: 0;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    

    @media screen and (min-width: 1100px) {
        .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    }
    .rows { display: flex; flex-direction: column; gap: 30px; }

    .rows .card { 
        max-width: none;
        display: flex; 
        flex-direction: row;
    }
    .rows .card .cover {
        max-width: 200px;
    }

    .bookmarks .card { max-width: none;
        display: flex; 
        flex-direction: row;
        margin-bottom: 0;
    }
    .bookmarks .card .cover {
        max-width: 150px;
    }
    .bookmarks .card .cover { background: white; padding: 15px; }
    .bookmarks .card .cover img { object-fit: contain; } 
    .bookmarks .card .meta { padding: 15px; }
    .bookmarks .card .meta p { margin: 0; }



    .inlineimage { position: absolute; height: 1px; overflow-y: visible; right: 15px; }
    .inlineimage img { width: 100vw; max-width: 600px; }

    @media screen and (max-width: 1100px) {
        .inlineimage { position: static; height: auto; display: block; margin: 24px 0; right: auto; text-align: left; }
        .inlineimage img { width: 100%; max-width: 400px;  }
    }

    .smallprint { font-size: 18px; color: var(--lightblack); }


    .callout {
        padding: 20px 20px;
        margin-bottom: 100px;
        margin-top: 100px;
        background: var(--lightyellow);
        border-radius: 15px;
    }
    .callout .copy {
        font-size: 32px;
        margin: 0;
        max-width: 900px;
        padding-left: 200px;
    }
    
    @media screen and (min-width: 1100px) {
        .quote {
            display: grid;
            grid-template-columns: 180px 1fr;
            gap: 20px;
        }
    }

    .quote .image { 
        width: 150px;
        height: 150px;
        border-radius: 50%;
        overflow: hidden;
        margin-bottom: 50px;
    }
    .quote .image img { width: 100%; height: 100%; object-fit: cover; }

    .quote .name {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        margin-top: 30px;
    }
    .quote .title {
        font-size: 18px;
        margin: 0;
    }

    .quote .copy .smaller {
        font-size: 24px;
        margin: 0;
    }

    blockquote {
        margin: 0;
        padding: 0;
    }


    .quirkytitle { 
        display: inline-block;
        background: white; color: black;
        border: 2px solid black;
        box-shadow: 8px 8px 0 var(--black);
        padding: 10px;
        position: absolute;
        transform: rotate(-7deg);
        margin-top: -10px;
    }

    .quote .expertviewtag  {
        display: inline-block;
        background: white; color: black;
        border: 2px solid black;
        box-shadow: 8px 8px 0 var(--black);
        padding: 10px;
        position: absolute;
        margin-left: 10px;
        margin-top: 120px;
        transform: rotate(-7deg);
    }

    
    #supernav { display: flex; align-items: baseline; }
            #supernav .burger { display: none; font-size: 60px; overflow: visible; height: 1px;  }
            #supernav .burger a { text-decoration: none; }
            #supernav .logo, #supernav .breadcrumbs {
                /* Stick left */
                font-family: 'Bebas Neue', sans-serif;
                justify-self: flex-start;
                font-size: 32px;
                color: black;
                text-decoration: none;
                line-height: 0.8;
                margin-top: 15px;
            }
            #supernav .logo a, #supernav .breadcrumbs a { text-decoration: none; }
            #supernav .logo a:hover, #supernav .breadcrumbs a:hover { border-bottom: 2px solid black; }
            
            #supernav .nav {
                margin-left: auto;
            }
            #supernav .nav .options { display: flex; gap: 15px; }
            #supernav .nav .options a { text-decoration: none; }
            #supernav .nav .options a:hover { text-decoration: underline; }


            @media screen and (max-width: 900px) {
                #supernav .breadcrumbs { display: none; }
                #supernav .nav .options { display: none; }
                #supernav .burger { display: block; }
            }

            #footer { margin-top: 200px; background: var(--black); color: white; }
            #footer h4 { font-size: 24px; margin-top: 50px; margin-bottom: 20px; }
            #footer ul { list-style: none; padding: 0; margin: 0; }
            #footer ul li { margin-bottom: 10px; }
            #footer ul li a { text-decoration: none; color: white; font-size: 16px; }
            #footer ul li a:hover { text-decoration: underline; }
            #footer .superfooter { margin-top: 100px; }
            @media screen and (min-width: 1100px) {
                #footer .superfooter { display: flex; gap: 15px; }
            }
            #footer .smallprint { margin-top: 50px; color: white; font-size: 16px; }
            #footer .inlineimage { margin-top: -200px; }
            #footer .about { font-size: 32px; }