/* =========================================================
   AKTUALITY – KVČ KLECANY
   Styluje pouze obsah stránky Aktuality.
   Nezasahuje do hlavičky, hlavního menu ani patičky.
========================================================= */

.aktuality-page {
  background: #fff8e8;
  padding-bottom: 55px;
  font-family: "Nunito", Arial, sans-serif;
  color: #1f2555;
}

/* HLAVIČKA OBSAHU STRÁNKY */

.aktuality-header {
  max-width: 1500px;
  margin: 0 auto;
  padding: 34px 30px 20px;
}

.aktuality-header-inner {
  position: relative;
  overflow: hidden;
  padding: 44px 38px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 18%, rgba(247, 201, 72, 0.45), transparent 25%),
    radial-gradient(circle at 88% 25%, rgba(19, 152, 168, 0.25), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fff4d8 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.aktuality-header-inner::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #e84b3c;
  opacity: 0.10;
}

.aktuality-label {
  display: inline-block;
  position: relative;
  z-index: 2;
  margin-bottom: 15px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #e84b3c;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.aktuality-header h1 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #1398a8;
  font-size: clamp(42px, 4vw, 68px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.aktuality-header p {
  position: relative;
  z-index: 2;
 /* max-width: 820px;*/
  margin: 16px 0 0;
  color: #1f2555;
  font-size: 20px;
  line-height: 1.6;
}

/* OBSAH AKTUALIT */

.aktuality-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 18px 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

/* KARTA NOVINKY */

.news-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
  min-height: 310px;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 7px 24px rgba(0, 0, 0, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
}

.news-image {
  display: block;
  overflow: hidden;
  background: #f4f4f4;
}

.news-image img {
  width: 100%;
  height: 100%;
  min-height: 310px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
}

.news-date {
  display: inline-block;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 6px 13px;
  border-radius: 999px;
  background: #fff3c4;
  color: #b27600;
  font-size: 14px;
  font-weight: 800;
}

.news-body h2 {
  margin: 0 0 14px;
  color: #23810d;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.news-body p {
  margin: 0 0 22px;
  color: #1f2555;
  font-size: 17px;
  line-height: 1.6;
}

.news-link {
  margin-top: auto;
  display: inline-block;
  align-self: flex-start;
  padding: 11px 19px;
  border-radius: 999px;
  background: #1398a8;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.2s ease;
}

.news-link:hover {
  background: #0f7d8a;
  color: #fff;
  transform: translateY(-1px);
}

/* RESPONZIVITA */

@media screen and (max-width: 1200px) {
  .aktuality-content {
    grid-template-columns: 1fr;
  }

  .news-card {
    grid-template-columns: 38% 1fr;
  }
}

@media screen and (max-width: 760px) {
  .aktuality-page {
    padding-bottom: 38px;
  }

  .aktuality-header {
    padding: 24px 16px 16px;
  }

  .aktuality-header-inner {
    padding: 32px 24px;
    border-radius: 24px;
  }

  .aktuality-header p {
    font-size: 17px;
  }

  .aktuality-content {
    padding: 14px 16px 0;
    gap: 22px;
  }

  .news-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .news-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .news-body {
    padding: 24px 22px 26px;
  }

  .news-body h2 {
    font-size: 24px;
  }

  .news-body p {
    font-size: 16px;
  }
}