.hs-content-library {
  --title-font-size: 1.3rem;
  --featured-title-font-size: calc(var(--title-font-size) * 1.33333333);
  --description-font-size: 1rem;
  --featured-description-font-size: calc(var(--description-font-size) * 1.125);
  --description-line-height: 1.375;
  --grid-layout-gap: 15px;
  --grid-column-count: 2;
  --grid-item--min-width: 250px;
  --gap-count: calc(var(--grid-column-count) - 1);
  --total-gap-width: calc(var(--gap-count) * var(--grid-layout-gap));
  --grid-item--max-width: calc((100% - var(--total-gap-width)) / var(--grid-column-count));

  /* Make the grid system work for two boxes */
  display: grid;
  grid-gap: var(--grid-layout-gap);
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); /* Adjust box width */
  justify-items: left;
  padding: 32px 0; /* Optional: Add padding to the top and bottom */
}

.hs-content-library__card {
  box-sizing: border-box;
  border-radius: 32px; /* Adjust for rounded edges */
  overflow: hidden;
  width: 100%; /* Makes card responsive */
  max-width: 500px; /* Limit the width */
  height: auto;
  padding: 0px;
  border: none;
  background-color: #fff;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
  text-align: left;
  transition: transform 0.2s ease-in-out; /* Add hover effect */
  
}

.hs-content-library__card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

.hs-content-library__image {
  border-radius: 0px;
  overflow: hidden;
  margin-bottom: 16px;
  width: 100%;
  height: 250px; /* Maintain the aspect ratio of the image */
  padding: 0; /* Remove padding around the image */
  box-shadow: none; /* Remove any shadow around the image */  
}

.hs-content-library__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hs-content-library__title {
  
  font-size: var(--title-font-size);
  font-weight: bold;
   margin-top: 15px; /* Adds space above the header */
  margin-left: 30px; /* Adds space to the left of the header */
  margin-right: 10px; /* Adds space to the right of the header */
  padding-bottom: 10px; /* Adds space below the header, if needed */
  font-size: 1.2em; /* Optional: Adjusts font size if you want it more prominent */
}

.hs-content-library__description {
  font-size: var(--description-font-size);
  /*margin: 0.5rem 0; */
   margin-top: 15px; /* Adds space above the header */
  margin-left: 10px; /* Adds space to the left of the header */
  margin-right: 10px; /* Adds space to the right of the header */
  padding-bottom: 10px; /* Adds space below the header, if needed */
  font-size: 1.2em; /* Optional: Adjusts font size if you want it more prominent */
}

.hs-content-library__link {
  color: #0047FF; /* Link color */
  text-decoration: none;
  font-weight: normal;
  /*margin-top: 8px;*/
  display: inline-block;
  position: relative; /* Required for pseudo-element positioning */
  transition: none; /* Smooth transition for color change */
  margin-top: 5px; /* Adds space above the header */
  margin-left: 30px; /* Adds space to the left of the header */
  margin-right: 10px; /* Adds space to the right of the header */
  padding-bottom: 25px; /* Adds space below the header, if needed */
  font-size: 1.2em; /* Optional: Adjusts font size if you want it more prominent */

}

.hs-content-library__link:hover {
  font-weight: bold;
  
}

.hs-content-library__link::after {
  content: "→"; /* Unicode for an arrow */
  /*font-size: 1rem; /* Adjust arrow size */
  margin-left: 8px; /* Spacing between text and arrow */
}