/* ------------------------------
   GLOBAL
------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    background: #ffffff;
    color: #222;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

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

.brand-logo img {
  height: 40px;
}

.brand-text strong {
  display: block;
  font-size: 18px;
  color: #000;
}

.media-mark {
  font-size: 14px;
  color: #555;
}

/* ------------------------------
   HEADER + LOGO + MENU
------------------------------ */

/* HEADER */
.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 12px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    font-size: 18px;
}

.logo img {
    height: 36px;
    margin-right: 10px;
}

/* Menu */
.main-nav a {
  color: #000;
  font-weight: 500;
  padding: 0.35rem 0.6rem;
  border-radius: 0.4rem;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

/* Hover – lekkie niebieskie tło */
.main-nav a:hover {
  background: rgba(29, 78, 216, 0.12); /* #1d4ed8 */
  color: #1d4ed8;
}

/* Active – niebieskie podkreślenie */
.main-nav a.active {
  border-bottom-color: #1d4ed8;
  color: #1d4ed8;
  font-weight: 600;
}

/* Kontakt */
.main-nav .nav-alert {
  color: #1d4ed8 !important;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  border-radius: 0.4rem;
}

/* Kontakt hover – lekkie niebieskie tło */
.main-nav .nav-alert:hover {
  background: rgba(29, 78, 216, 0.12);
  color: #1e40af !important;
}

/* Kontakt active – niebieskie podkreślenie */
.main-nav .nav-alert.active {
  border-bottom-color: #1d4ed8;
  color: #1e40af !important;
}

/* Mobilne Menu */
@media (max-width: 768px) {
  .main-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.3rem;
    margin-top: 0.6rem;
  }

  .main-nav a {
    padding: 0.5rem 0.4rem;
    width: 100%;
  }
}

/* ------------------------------
   SEKCJE
------------------------------ */

section {
    padding: 60px 0;
    border-bottom: 1px solid #f0f0f0;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

section p {
    max-width: 800px;
}

/* ------------------------------
   KONTAKT DLA MEDIÓW
------------------------------ */

.media-contact {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.media-contact img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 20px;
}

.media-contact a {
    color: #0066cc;
    text-decoration: none;
}

.media-contact a:hover {
    text-decoration: underline;
}

/* ------------------------------
   LISTY
------------------------------ */

.press-list,
.download-list {
    list-style: none;
    margin-top: 20px;
}

.press-list li,
.download-list li {
    margin-bottom: 10px;
}

.press-list a,
.download-list a {
    color: #0066cc;
    text-decoration: none;
}

.press-list a:hover,
.download-list a:hover {
    text-decoration: underline;
}

.press-section {
    padding: 60px 0;
}

.press-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}

.press-item {
    display: block;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: #222;
    transition: 0.2s;
    background: #ffffff;
}

.press-item:hover {
    border-color: #000;
    transform: translateY(-3px);
}

.press-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.press-item p {
    color: #555;
    margin-bottom: 10px;
}

.press-item .date {
    font-size: 14px;
    color: #888;
}

/* ------------------------------
   STOPKA
------------------------------ */

.footer {
    background: #fafafa;
    border-top: 1px solid #e5e5e5;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #666;
}

