/* Link Card Block */
.edgc-link-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  height: 100%;
  border: 1px solid #e2e8f0;
}

.edgc-link-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  border-color: #cbd5e1;
}

.edgc-link-card-icon {
  width: 64px;
  height: 64px;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: #003876;
  transition: background-color 0.3s ease;
}

.edgc-link-card:hover .edgc-link-card-icon {
  background-color: #e2e8f0;
}

.edgc-link-card-icon img,
.edgc-link-card-icon svg {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.edgc-link-card-title {
  color: #003876;
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* Editor Specific Styles */
.wp-block-edgc-link-card {
  height: 100%;
}
