.custom-intrested-item-card *{
  font-family: "Roboto"
}



/* Card Base Style */
.custom-intrested-item-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures all cards are the same height */
  box-sizing: border-box;
}

/* Hover Effect */
.custom-intrested-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Title Style */
.custom-intrested-item-card-title-link {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 16px 0;
  line-height: 1.5;
  color: #222;
}

/* Title Link */
.custom-intrested-item-card-title-link a {
  color: inherit !important;
  text-decoration: none !important;
  transition: color 0.3s ease;
}

/* Title Link Hover */
.custom-intrested-item-card-title-link a:hover {
  color: #004c97 !important;
}

/* Read More Link */
.custom-intrested-item-read-more-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.95rem;
  color: #004c97;
  text-decoration: none;
  gap: 6px;
  font-weight: 500;
  transition: color 0.3s ease;
  margin-top: auto; /* Push link to the bottom of the card */
}

/* Read More Hover */
.custom-intrested-item-read-more-link:hover {
  color: #004c97 !important;
  text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .custom-intrested-item-card {
    padding: 16px;
  }

  .custom-intrested-item-card-title-link {
    font-size: 1rem;
  }

  .custom-intrested-item-read-more-link {
    font-size: 0.9rem;
  }
}


.blog-intrested-items-view-wrapper .views-view-responsive-grid__item-inner {
  display: flex;
  flex-direction: column;
  height: 100% !important;
}

.blog-intrested-items-view-wrapper .views-field.views-field-nothing {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  height: 100% !important;
}


.blog-intrested-items-view-wrapper .field-content{
height: 100% !important;
}