/**
 * Icon Card Widget base styles.
 */

.icon-card {
  display: flex;
  flex-direction: column;
  padding: 10px;
}

.icon-card-media {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
}

.icon-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.icon-card-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 96%;
  letter-spacing: 0%;
  color: #003361;
  margin-bottom: 1.5rem;
}

.icon-card-desc {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 132%;
  letter-spacing: 0%;
  color: #828282;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .icon-card-title {
    font-size: 16px;
    margin-bottom: 1rem;
  }

  .icon-card-media {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
}
