* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #2c2c2c;
  background: #f6f7fb;
}

.image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-container h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: #ffffff;
  font-size: 2.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.breadcrumb {
  max-width: 1200px;
  margin: 24px auto 0;
  padding: 0 24px;
  font-size: 0.95rem;
  color: #6f7290;
}

.breadcrumb a {
  color: #5b9bd5;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-content {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 32px auto 64px;
  padding: 0 24px;
}

.news-column {
  display: grid;
  gap: 24px;
}

.news-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(82, 82, 120, 0.15);
  padding: 28px 30px;
  box-shadow: 0 20px 40px rgba(34, 34, 77, 0.06);
}

.news-card--muted {
  opacity: 0.92;
}

.news-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.news-card__subtitle {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: #6f7290;
}

.news-card h2 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.3;
  color: #20223b;
}

.news-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card__cta {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2f2a4d;
  color: #ffffff;
  font-size: 1.35rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.news-card__link:hover .news-card__cta {
  background: #3f3a5f;
  transform: translateX(2px);
}

.news-card__link:hover .news-card h2,
.news-card__link:hover .news-card__subtitle,
.news-card__link:hover .news-card__text {
  color: inherit;
}

.news-card__date {
  margin: 18px 0 12px;
  color: #4a5a75;
  font-size: 0.95rem;
}

.news-card__text {
  margin: 0;
  line-height: 1.75;
  color: #4f5168;
}

.news-article {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid rgba(82, 82, 120, 0.15);
  padding: 32px 34px;
  box-shadow: 0 20px 40px rgba(34, 34, 77, 0.06);
}

.news-article__top {
  display: grid;
  gap: 18px;
}

.news-article__social {
  display: flex;
  gap: 12px;
  align-items: center;
}

.news-article__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f0f2fa;
  color: #2c2c2c;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.news-article__header {
  display: grid;
  gap: 12px;
}

.news-article__subtitle {
  margin: 0;
  font-size: 0.95rem;
  color: #6f7290;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-article__header h1 {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.05;
  color: #20223b;
}

.news-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  font-size: 0.95rem;
  color: #4a5a75;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2f2a4d;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.badge__icon {
  font-size: 0.95rem;
}

.news-article__intro {
  margin: 0;
  color: #4f5168;
  line-height: 1.85;
}

.news-article__content {
  margin-top: 32px;
}

.news-article__content h2 {
  margin: 0 0 18px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #20223b;
}

.news-article__content p,
.news-article__content ul {
  margin: 0 0 18px;
  color: #4f5168;
  line-height: 1.75;
}

.news-article__content ul {
  padding-left: 1.2rem;
}

.news-article__content li {
  margin-bottom: 0.8rem;
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-list a {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: #1e1b3c;
  color: #ffffff;
  font-size: 0.95rem;
  text-decoration: none;
}

.related-event {
  max-width: 1200px;
  margin: 0 auto 64px;
  padding: 0 24px;
}

.related-event h2 {
  margin: 0 0 18px;
  font-size: 1.25rem;
  color: #20223b;
}

.related-event__table-wrap {
  background: #ffffff;
  border: 1px solid rgba(82, 82, 120, 0.1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(34, 34, 77, 0.05);
}

.related-event table {
  width: 100%;
  border-collapse: collapse;
}

.related-event th,
.related-event td {
  padding: 18px 20px;
  text-align: left;
  font-size: 0.95rem;
  color: #2c2c2c;
}

.related-event thead {
  background: #f5f6fa;
}

.related-event th {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.related-event tbody tr {
  border-top: 1px solid #e9ebf2;
}

.related-event__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2f2a4d;
  color: #ffffff;
  text-decoration: none;
}

.related-event__action:hover {
  background: #3f3a5f;
}

.sidebar {
  width: 220px;
  background: #fff;
  padding: 1.5rem;
}

.sidebar__box {
  width: 100%;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
}

.sidebar__box h3 {
  margin: 0 0 1.2rem;
  font-size: 1.25rem;
  color: #333333;
}

.sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar__list li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
}

.sidebar__list li:last-child {
  border-bottom: none;
}

.sidebar__list a {
  display: block;
  font-size: 0.95rem;
  color: #5b9bd5;
  text-decoration: none;
}

.sidebar__list a:hover {
  text-decoration: underline;
}

footer {
  background: linear-gradient(135deg, #1a1f5e 0%, #0d1240 40%, #1a3a6e 100%);
  padding: 3rem 2rem 2rem;
  text-align: center;
  margin-top: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.footer-logo svg { width: 55px; height: 55px; }

.footer-logo-text { color: white; text-align: left; line-height: 1.2; }

.footer-logo-text span:first-child {
  display: block;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 3px;
}

.footer-logo-text span:last-child {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-nav a:hover { color: white; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-socials a {
  color: #ccc;
  font-size: 16px;
  text-decoration: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}

.footer-socials a:hover { color: white; border-color: white; }

@media (max-width: 920px) {
  .page-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .image-container img {
    height: 220px;
  }

  .image-container h1 {
    font-size: 2rem;
  }

  .news-card {
    padding: 22px 20px;
  }

  .sidebar__box {
    padding: 22px 20px;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.9rem 1.5rem;
  font-size: 14px;
  z-index: 999;
}

.cookie-banner p { flex: 1; min-width: 200px; }

.cookie-banner .btn-accept { background: #2e7d32; color: white; border: none; padding: 8px 18px; border-radius: 4px; cursor: pointer; font-size: 14px; }

.cookie-banner .btn-deny   { background: #c62828; color: white; border: none; padding: 8px 18px; border-radius: 4px; cursor: pointer; font-size: 14px; }

.cookie-banner .btn-personalize,
.cookie-banner .btn-policy { background: #e0e0e0; color: #333; border: none; padding: 8px 18px; border-radius: 4px; cursor: pointer; font-size: 14px; }

.cookie-banner button:hover { opacity: 0.85; }
