 :root{
      --page-max: 1200px;
      --gap: 22px;
      --shadow: 0 10px 26px rgba(0,0,0,.12);
      --shadow-hover: 0 16px 34px rgba(0,0,0,.16);
    }

    *{ box-sizing: border-box; }
    
    body{
      margin: 0;
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: #fff;
      color: #111;
    }
    h1 {
        font-family: "PT Sans", sans-serif;
        font-size: 30px;
        font-weight: 500;
    }
    h2 {
        font-family: "PT Sans", sans-serif;
        font-size: 22px;
        font-weight: 500;
        margin-top: 40px;
    }
    span a {
        color: #de1f39;
    }
    .wrap {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 24px 0;
        text-align: center;
    }
    /* Top logo */
    .brand {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
    }
    .brand img{
      height: 86px;
      width: auto;
      object-fit: contain;
    }
    .headline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        letter-spacing: .6px;
        text-transform: uppercase;
        margin: 0px 0 0;
    }
    .headline .cup {
        line-height: 50px;
        width: 20px;
        margin-left: 20px;
    }

    /* Grid */
    .grid {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        gap: 22px;
        width: 1170px;
        margin: auto;
        margin-top: 40px;
    }

    .card {
        position: relative;
        overflow: hidden;
        padding: 0;
        line-height: 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 260px;
        box-shadow: 7px 0 5px #e3e3e3;
    }
    .grid-below {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 22px;
        max-width: 1600px;
        margin: 20px auto 0;
    }
    .card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    @media (max-width: 1600px){
        .brand {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
    }
    @media (max-width: 1200px){
        .brand {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 22px;
            width: auto;
            margin: auto;
            margin-top: 40px;
        }
        .grid{ grid-template-columns: repeat(3, 1fr); }
        .grid-below{ grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 900px){
        .grid{ grid-template-columns: repeat(3, 1fr); }
        .grid-below{ grid-template-columns: repeat(3, 1fr); }
        .grid {
            width: auto;
            margin: auto;
        }
        h1 {
            font-size: 17px;
        }
    }

    @media (max-width: 640px){
        h2 {
            font-size: 16px !important;
        }
        .headline .cup {
            line-height: 30px;
            margin-left: 0;
        }
        .brand img {
            height: 60px;
        }
        .brand {
            margin-bottom: 0;
        }
        .headline {
            margin: 30px 0 30px;
        }
        .cup img {
            width: 30px;
            height: 30px;
        }
        .grid,
        .grid-below{
            grid-template-columns: repeat(2, 1fr);
        }
    }
    @media (max-width: 320px) {
        h2 {
            font-size: 13px;
            margin-top: 30px;
        }
        h1 {
            font-size: 13px;
        }
        .cup img {
            width: 20px;
            height: 25px;
        }

    }