/* Genel Gövde */
body {
  margin: 0;
  padding: 10px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  background-color: #fafafa;
}

/* Panel konteyner */
.panel-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5mm;
}

/* Panel */
.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 280px;
  box-sizing: border-box;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  padding: 10px;
  overflow: hidden;
}

/* Başlık & Görsel */

.panel .title img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  height: auto;
  max-height: 150px;
  object-fit: cover;
  border-radius: 10px;
}


/* Başlık metni */
.panel .title h5,
.panel .title h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 5px;
  text-align: center;
}

/* İçerik kısmı */
.panel .content {
  background-color: #f2f2f2;
  padding: 10px;
  box-sizing: border-box;
  height: 300px;
  overflow-y: auto;
  width: 100%;
}

/* Buton alanı */
.button-area {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

/* Link buton tasarımı */
.button-area a .card-footer,
.button-area a .card-footer-mainpage {
  display: inline-block;
  background-color: #0078d4;
  color: white;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  width: fit-content;
  margin: 0 auto;
}

/* Responsive görünüm */
@media screen and (max-width: 768px) {
  .panel-container {
    flex-direction: column;
  }

  .panel .content {
    height: auto;
    overflow-y: visible;
  }

  .panel .title img {
    max-height: 120px;
  }
}