    article {
        --img-scale: 1.001;        
        --link-icon-translate: -20px;
        --link-icon-opacity: 0;
        position: relative;
        /* border-radius: 5px; */
        /* box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 9px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;  */
        box-shadow: rgba(0, 0, 0, 0.16) 12px 10px 7px 0px;
        background: #fff;
        transform-origin: center;
        transition: all 0.4s ease-in-out;
        overflow: hidden;
      }

      article a::after {
        position: absolute;
        inset-block: 0;
        inset-inline: 0;
        cursor: pointer;
        content: "";
      }

      /* basic article elements styling */
      .article-h2 {             
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 2.8rem;
        font-weight: 100;
        margin:15px 0px;
        letter-spacing: 0.03em;
        color: var(--title-color);
        transition: color 0.3s ease-out;
      }

      .article-h3 {
        margin: 0 0 18px 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 500;
        font-size: 1.5rem;
        letter-spacing: 0.06em;
        color: var(--title-color);
        transition: color 0.3s ease-out;
      }

      .article-p {
                
        font-size: 1.3em;
        font-weight: 100;
        color: var(--title-color);
        transition: color 0.3s ease-out;
        margin-bottom: 3.5em;
      }      

      figure {
        margin: 0;
        padding: 0;
        aspect-ratio: 16 / 9;
        overflow: hidden;
      }

      article img {
        max-width: 100%;
        transform-origin: center;
        transform: scale(var(--img-scale));
        transition: transform 0.4s ease-in-out;
      }

      .article-body {
        padding: 24px;
      }

      article a {
        display: inline-flex;        
        text-decoration: none;
        color: #28666e;
      }    

      article a .icon {
        min-width: 24px;
        width: 24px;
        height: 24px;
        margin-left: 5px;
        transform: translateX(var(--link-icon-translate));
        opacity: var(--link-icon-opacity);
        transition: all 0.3s;
      }

      /* using the has() relational pseudo selector to update our custom properties */
      article:has(:hover) {
        --img-scale: 1.1;
        --title-color: #28666e;
        --link-icon-translate: 0;
        --link-icon-opacity: 1;
        box-shadow: rgba(0, 0, 0, 0.16) 12px 10px 18px 0px;
      }

      /************************ 
      Generic layout (demo looks)
      **************************/

      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }

      body {
        margin: 0;        
        font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 1.2rem;
        line-height: 1.6rem;
        background-image: #fff;
        min-height: 100vh;
        margin-inline: auto;
        /*        
        padding-inline: 24px;
        */
      }

      .articles {
        display: grid;
        max-width: 1080px;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 24px;        
        padding: 50px 0px;
      }

      
      @media screen and (max-width: 624px) {
        article {
          container: card/inline-size;
        }
        .article-body p {
          display: none;
        }
        .articles {
          padding: 40px 30px;
        }        
      }   
      
      @media screen and (min-width: 625px) {
        article a {
          position: absolute;
          bottom: 0;
          left: 24px;
        }
      }

      @container card (min-width: 380px) {
        .article-wrapper {
          display: grid;
          grid-template-columns: 100px 1fr;
          gap: 16px;
          
        }
        .article-body {
          padding-left: 0;
        }



        figure {
          width: 100%;
          height: 100%;
          overflow: hidden;
        }
        figure img {
          height: 100%;
          aspect-ratio: 1;
          object-fit: cover;
        }
      }

      .sr-only:not(:focus):not(:active) {
        clip: rect(0 0 0 0); 
        clip-path: inset(50%);
        height: 1px;
        overflow: hidden;
        position: absolute;
        white-space: nowrap; 
        width: 1px;
      }      
