h3 {
    margin-top: 5px !important;
    color: #dc3545 !important;
    font-size: 18px !important;
    margin-bottom: 5px !important;
}
.additional-info{
  padding-left: 8px;
  padding-bottom: 10px;
}


.image img{
  width: 100%;
  max-height: 203px;
  min-height: 203px
}

article {
   --img-scale: 1.001;
   --title-color: #ff5a5f;
   position: relative;
   border-radius: 5px;
   box-shadow: none;
   background: #fff;
   transform-origin: center;
   transition: all 0.4s ease-in-out;
   border-style: solid;
   border-width: 3px;
   border-color: #ff5a5f;
   overflow: hidden;
   text-align: center;
   font-size: 18px;
}
 article a::after {
   position: absolute;
   inset-block: 0;
   inset-inline: 0;
   cursor: pointer;
   content: "";
}
/* basic article elements styling */
 article h2 {
   margin: 0 0 10px 0;
   
   font-size: 1.8rem;
   color: var(--title-color);
   transition: color 0.3s ease-out;
   font-size: 18px;
}
 figure {
   margin: 0;
   padding: 0;
   aspect-ratio: 1.7777777778;
   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: 7px;
}
 article a {
   display: inline-flex;
   align-items: center;
   text-decoration: none;
   color: #ff5a5f;
}

article a:hover{
  text-decoration: none;
}
 article a:focus {
   outline: 1px dotted #ff5a5f;
}
}
/* using the has() relational pseudo selector to update our custom properties */
 article:has(:hover, :focus) {
   --img-scale: 1.1;
   --title-color: #ff5a5f;
   --link-icon-translate: 0;
   --link-icon-opacity: 1;
   box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
/************************ Generic layout (demo looks) **************************/
 *, *::before, *::after {
   box-sizing: border-box;
}
 .articles {
   display: grid;
   max-width: 1200px;
   margin-inline: auto;
   padding-inline: 24px;
   grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
   gap: 24px;
}
 @media screen and (max-width: 960px) {
   article {
     container: card/inline-size;
     margin-bottom: 15px;
  }
   .article-body p {
     display: none;
  }
}
 @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;
}
 