/* Card Block Styles */

.card-block {
  width: 100%;
  margin: 2rem 0;
}

.card-grid {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
}

/* Mobile: 1 card per row */
@media (max-width: 480px) {
  .card-grid {
    flex-direction: column;
  }
}

/* Finish Card Block Styles */

/* Call To Action Card */
.call-to-action-card {
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.2s ease-in-out,
    box-shadow 0.2s ease-in-out;
  height: inherit;
  display: flex;
  justify-content: center;
  width: 18rem;
  flex-direction: column;
}

.call-to-action-card:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}

.card-title {
  font-size: 1.25rem;
  text-align: center;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.card-icon-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.card-icon {
  margin: 0.5rem 0;
  min-width: 4rem;
  max-width: 4rem;
}

.card-description {
  flex-grow: 1;
  text-align: center;
  margin: 0;
  line-height: 1.6;
  font-size: 1.2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  margin-top: auto;
}

.cta-button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.cta-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .call-to-action-card {
    padding: 1.25rem;
    width: 100%;
  }

  .card-title {
    font-size: 1.125rem;
  }

  .cta-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
  }
}
/* Finish Call To Action Card */
