.free-resources-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px; 
}

.bento-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 413px;
}

.bento-card .bento-image {
    width: 100%;
    height: 255px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.bento-card .bento-title {
    font-family: 'Mona Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 31px;
    color: #001B2F;
    margin: 12px 0 4px 0;
}

.bento-card .bento-cta {
    font-family: 'Mona Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 180%;
    color: #E70491;
    text-decoration: none;
}

.read-more {
  color: #E70491;
  text-decoration: none;
  font-weight: bold;    
  display: inline-flex;    
  align-items: center;
  gap: 0.3em;         
	cursor: pointer; 
}

.read-more::after {
  content: '→';      
  font-size: 1em;         
  transition: transform 0.2s ease; 
}

.read-more:hover::after {
  transform: translateX(3px);
}

@media (max-width: 600px) {
  .free-resources-cards {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .bento-card {
      width: 100%;
      max-width: 100%;
      margin-bottom: 30px;
  }

  .bento-card .bento-image {
      height: 200px;
  }

  .bento-card .bento-title {
      font-size: 18px;
      line-height: 26px;
  }
}
