/* Dogs Section - Vermittlung */
.dogs-section {
  padding: 96px 0;
  background: #ffffff;
}

.dogs-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.dogs-section__header {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.dogs-section__header h2 {
  margin: 0;
  color: #354152;
  font-family: "Fredoka", sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.16;
}

.dogs-section__header p {
  margin: 20px 0 0;
  color: #354152;
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid #e8e1d2;
  border-radius: 24px;
  background: #fffaf1;
  box-shadow: 0 14px 40px rgba(53, 65, 82, 0.08);
}

.dog-card__media {
  height: 260px;
  background: #f4ede1;
  overflow: hidden;
}

.dog-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dog-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.dog-card h3 {
  margin: 0;
  color: #354152;
  font-family: "Fredoka", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}

.dog-card__meta {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
  color: #4a5565;
  font-family: "Nunito Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.dog-card__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dog-card__meta-item img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.dog-card__description {
  margin: 16px 0 0;
  color: #4a5565;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.dog-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px 20px;
  border-radius: 8px;
  background: #d4a017;
  color: #ffffff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.dog-card__button:hover,
.dog-card__button:focus {
  background: #bb8d12;
  transform: translateY(-1px);
}

@media (max-width: 1199px) {
  .dogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .dogs-section {
    padding: 72px 0;
  }
  .dogs-section__header {
    margin-bottom: 40px;
  }
  .dogs-section__header h2 {
    font-size: 40px;
  }
  .dogs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 599px) {
  .dogs-section__header h2 {
    font-size: 32px;
  }
  .dogs-section__header p {
    font-size: 16px;
  }
  .dogs-grid {
    grid-template-columns: 1fr;
  }
  .dog-card__body {
    padding: 20px;
  }
}
