.isfel-kattedra-header {
  margin-bottom: 24px;
}

.isfel-kattedra-grid-cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.isfel-kattedra-card {
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.isfel-kattedra-card-image img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.isfel-kattedra-card-body {
  padding: 20px;
}

.isfel-kattedra-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #0d5cab;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.isfel-kattedra-button:hover {
  background: #094882;
  color: #fff;
}

.isfel-kattedra-button-secondary {
  background: #2b2b2b;
}

.isfel-kattedra-form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.isfel-kattedra-form-grid label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.isfel-kattedra-form-grid input {
  min-height: 44px;
  border: 1px solid #cfcfcf;
  border-radius: 8px;
  padding: 0 12px;
}

.isfel-kattedra-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.isfel-kattedra-status,
.isfel-kattedra-message {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #f5f8fc;
}

.isfel-kattedra-error {
  background: #fff2f1;
  color: #a5241a;
}

.isfel-kattedra-success {
  background: #eefaf1;
  color: #19693a;
}

@media (max-width: 768px) {
  .isfel-kattedra-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .isfel-kattedra-button {
    width: 100%;
  }
}
