/* =========================
   RESET / BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Roboto", system-ui, sans-serif;
  background-color: #0f172a;
  color: #e5e7eb;
  line-height: 1.6;
}

/* =========================
   GLOBAL
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================
   HEADER
========================= */
.site-header {
  background: linear-gradient(180deg, #020617, #020617cc);
  padding: 1.2rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

/* =========================
   HERO – FULL WIDTH
========================= */
.hero {
  width: 100%;
  min-height: 360px;
  padding: 3rem 0;
  background:
    linear-gradient(
      rgba(2, 6, 23, 0.9),
      rgba(2, 6, 23, 0.9)
    ),
    url("../img/main.png") center / cover no-repeat;
}
.hero-divider {
  width: 24rem;
  height: 2px;
  margin: 1.2rem 0 1.5rem;
  background: linear-gradient(
    90deg,
    rgba(128, 26, 42, 0.9),
    rgba(56, 189, 248, 0.7)
  );
  border-radius: 2px;
}


.hero-divider::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  width: 6px;
  height: 6px;
  background-color: rgba(128, 26, 42, 0.9);
  border-radius: 50%;
  transform: translateY(-50%);
}



.hero-content {
  display: flex;
  gap: 3rem;
  align-items: center;
}

/* =========================
   LEFT
========================= */
.hero-left {
  flex: 2;
}

.hero-tag {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 2px;
  background-color: rgba(128, 26, 42, 0.35);
  color: #f3c7ce;
  border: 1px solid rgba(128, 26, 42, 0.6);
}

.hero-left h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}

.hero-description {
  max-width: 760px;
  color: #d1d5db;
}

/* =========================
   RIGHT
========================= */
.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.hero-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.hero-topics li {
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  background-color: rgba(56, 189, 248, 0.12);
  color: #7dd3fc;
  border-radius: 999px;
  text-align: center;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-right {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-topics {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

/* =========================
   FOOTER
========================= */
.site-footer {
  background-color: #020617;
  padding: 2rem 0;
  margin-top: 4rem;
  font-size: 0.9rem;
  color: #9ca3af;
}
/* =========================
   INFO POD ZDJĘCIEM
========================= */
.post-info {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;

  margin: -2rem auto 3rem;
  max-width: 760px;

  font-size: 0.75rem;
  color: #9ca3af;
  letter-spacing: 0.3px;
}

.post-author {
  font-weight: 500;
}

.post-separator {
  opacity: 0.6;
}

/* LINIA POD TEKSTEM */
.post-info::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.5rem;

  width: 50%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(128, 26, 42, 0.9),
    rgba(128, 26, 42, 1)
  );
}
/* =========================
   HOME NEWS – INTERIA STYLE
========================= */
.home-news {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

/* HEADER */
.home-news-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.home-news-header h2 {
  font-size: 2rem;
  font-weight: 600;
}

.section-accent {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(128, 26, 42, 0.9),
    rgba(56, 189, 248, 0.6)
  );
}

/* GRID */
.home-news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

/* =========================
   LEWY DUŻY NEWS
========================= */
.news-main a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
}

.news-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.news-main-content {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0),
    rgba(0,0,0,0.85)
  );
}

.news-main h3 {
  font-size: 1.9rem;
  line-height: 1.2;
  margin: 0.6rem 0;
}

.news-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(128, 26, 42, 0.9);
}

.news-author {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* =========================
   HOME SECTION – CLEAN
========================= */
.home-section {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;
}

.home-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.home-section-header h2 {
  font-size: 2rem;
  font-weight: 600;
}

.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(128,26,42,0.9),
    rgba(56,189,248,0.6)
  );
}

/* =========================
   LEAD
========================= */
.home-lead a {
  display: block;
  text-decoration: none;
  color: #fff;
}

.home-lead img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 16px;
}

.home-lead-text {
  margin-top: 1.5rem;
}

.home-lead h3 {
  font-size: 1.8rem;
  line-height: 1.25;
  margin: 0.6rem 0;
}

/* =========================
   GRID
========================= */
.home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.home-card a {
  text-decoration: none;
  color: #e5e7eb;
}

.home-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  padding-bottom: 3%;
}

.home-card h4 {
  font-size: 1rem;
  line-height: 1.35;
  margin: 0.6rem 0;
}

/* =========================
   META
========================= */
.home-tag {
  font-family: 'Montserrat';
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: rgba(128,26,42,1);
  font-weight: 600;
}

.home-author {
    font-family: 'Montserrat';
  font-size: 0.75rem;
  color: #94a3b8;
}

/* =========================
   HOVER
========================= */
.home-lead a:hover h3,
.home-card a:hover h4 {
  color: rgb(201, 99, 114);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .home-grid {
    grid-template-columns: 1fr;
  }

  .home-lead h3 {
    font-size: 1.4rem;
  }
}
/* =========================
   LEAD – TEKST NA ZDJĘCIU
========================= */
.home-lead a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
}

/* ZDJĘCIE */
.home-lead img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* OVERLAY NA DOLE */
.home-lead-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 30%; /* 🔥 TUTAJ TE 30% */
  padding: 1.8rem 2rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;

  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(2, 6, 23, 0.85) 100%
  );
}

/* TAG */
.home-lead .home-tag {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(128, 26, 42, 0.9);
  font-weight: 900;
}

/* TYTUŁ */
.home-lead h3 {
  font-size: 1.9rem;
  line-height: 1.25;
  margin: 0.3rem 0;
}

/* AUTOR */
.home-lead .home-author {
  font-size: 0.75rem;
  color: #cbd5f5;
}

/* HOVER */
.home-lead a:hover h3 {
  color: rgb(201, 99, 114);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .home-lead-text {
    height: 40%; /* trochę więcej miejsca na tekst */
    padding: 1.4rem 1.4rem;
  }

  .home-lead h3 {
    font-size: 1.4rem;
  }
}
/* OVERLAY NA DOLE – MOCNIEJSZE PRZYCIEMNIENIE */
.home-lead-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 30%; /* ~30% wysokości zdjęcia */
  padding: 2rem 2.2rem;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;

  /* 🔥 PRAWDZIWE TŁO POD TEKSTEM */
  background: rgba(2, 6, 23, 0.85);

  /* delikatne przejście ku górze */
  mask-image: linear-gradient(
    to top,
    black 75%,
    transparent 100%
  );
}
/* =========================
   LEAD – MOBILE (TEKST POD ZDJĘCIEM)
========================= */
@media (max-width: 768px) {

  /* zdejmujemy pozycjonowanie */
  .home-lead-text {
    position: static;
    height: auto;

    background: none;
    padding: 1.4rem 0 0;

    color: #e5e7eb;
  }

  .home-lead h3 {
    font-size: 1.4rem;
    margin-top: 0.4rem;
  }

  .home-lead .home-author {
    font-size: 0.75rem;
  }
}
/* =========================
   CTA – LISTA WSZYSTKICH ARTYKUŁÓW
========================= */
.all-posts-cta {
  margin: 7rem 0 4rem;
  padding: 4rem 2rem;

  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.9),
    rgba(15, 23, 42, 0.6)
  );

  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.all-posts-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.all-posts-inner h3 {
  font-size: 1.8rem;
  margin-bottom: 0.6rem;
}

.all-posts-inner p {
  font-size: 0.95rem;
  color: #94a3b8;
  margin-bottom: 2.2rem;
}

/* PRZYCISK */
.all-posts-btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;

  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;

  color: #fff;
  text-decoration: none;

  border-radius: 999px;

  background: linear-gradient(
    90deg,
    rgba(128, 26, 42, 0.9),
    rgba(56, 189, 248, 0.85)
  );

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.all-posts-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(56, 189, 248, 0.35);
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {
  .all-posts-cta {
    padding: 3rem 1.5rem;
  }

  .all-posts-inner h3 {
    font-size: 1.4rem;
  }

  .all-posts-inner p {
    font-size: 0.85rem;
  }
}
/* =========================
   FEATURED – 2 BOXY
========================= */
.featured-dual {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* BOX */
.featured-box {
  position: relative;
  padding: 2.2rem;
  border-radius: 18px;

  background: linear-gradient(
    180deg,
    rgba(15,23,42,0.9),
    rgba(15,23,42,0.6)
  );

  border: 1px solid rgba(255,255,255,0.08);

}
.featured-author {
      font-family: 'Montserrat';
}

/* SPONSORED DELIKATNIE INACZEJ */
.featured-box.sponsored {
  background: linear-gradient(
    180deg,
    rgba(15,23,42,0.8),
    rgba(15,23,42,0.5)
  );
}

/* LABEL */
.featured-label {
  display: inline-block;
  margin-bottom: 1.4rem;
  text-transform: uppercase;
    font-family: 'Montserrat';
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  color: rgba(128,26,42,1);
  font-weight: 600;
  
}

/* CONTENT */
.featured-content img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1.2rem;
  
}

.featured-content h3 {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  
}

.featured-content p {
  
  font-size: 0.9rem;
  color: #94a3b8;
}


/* MOBILE */
@media (max-width: 900px) {
  .featured-dual {
    grid-template-columns: 1fr;
  }
}
/* =========================
   FEATURED – ARTYKUŁ MIESIĄCA / SPONSOROWANY
========================= */
.featured-dual {
  max-width: 1200px;
  margin: 6rem auto;
  padding: 0 2rem;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

/* POJEDYNCZY BOX */
.featured-box {
  display: flex;
  flex-direction: column;

  background: linear-gradient(
    180deg,
    rgba(15,23,42,0.85),
    rgba(15,23,42,0.6)
  );

  border-radius: 18px;
  padding: 2rem;

  border: 1px solid rgba(255,255,255,0.08);
}

/* LINK CAŁEGO BOXA */
.featured-box a {
  display: flex;
  flex-direction: column;
  height: 100%;

  text-decoration: none;
  color: #e5e7eb;
}

/* LABEL */
.featured-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;

  margin-bottom: 1.2rem;

  color: rgba(128, 26, 42, 0.9);
}

/* ZDJĘCIE */
.featured-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;

  border-radius: 12px;
  margin-bottom: 1.4rem;
}

/* TYTUŁ */
.featured-box h3 {
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

/* AUTOR */
.featured-author {
  margin-top: auto;
  font-size: 0.8rem;
  color: #94a3b8;
}
/* =========================
   FEATURED – DELIKATNA POŚWIATA
========================= */
.featured-box {
  box-shadow:
    0 0 0 rgba(128, 26, 42, 0.9),
    0 12px 40px rgba(0, 0, 0, 0.6);

  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

/* POŚWIATA NA HOVER */
.featured-box:hover {
  box-shadow:
    0 0 25px rgba(128, 26, 42, 0.9),
    0 18px 50px rgba(0, 0, 0, 0.65);
  transform: translateY(-3px);
}

/* HOVER */
.featured-box a:hover h3 {
  color: rgb(201, 99, 114);
}
/* SPONSOROWANY – SUBTELNA RÓŻNICA */

.featured-box.sponsored {
  background: linear-gradient(
    180deg,
    rgba(15,23,42,0.75),
    rgba(15,23,42,0.5)
  );
}
/* =========================
   FEATURED – MOBILE FIX
========================= */
@media (max-width: 768px) {

  .featured-dual {
    grid-template-columns: 1fr; /* jeden pod drugim */
    gap: 1.8rem;
    padding: 0 1.2rem;
  }

  .featured-box {
    padding: 1.4rem;
    border-radius: 14px;

    /* mniej agresywna poświata na mobile */
    box-shadow:
      0 0 14px rgba(128, 26, 42, 0.9),
      0 10px 28px rgba(0, 0, 0, 0.65);
  }

  /* wyłącz podnoszenie na hover (mobile) */
  .featured-box:hover {
    transform: none;
  }

  /* obraz trochę niższy */
  .featured-box img {
    height: 160px;
    border-radius: 10px;
  }

  .featured-box h3 {
    font-size: 1.15rem;
  }

  .featured-author {
    font-size: 0.75rem;
  }
}
/* =========================
   FEATURED – PULSUJĄCA POŚWIATA
========================= */
@keyframes redPulse {
  0% {
    box-shadow:
      0 0 12px rgba(128, 26, 42, 0.25),
      0 0 0 rgba(128, 26, 42, 0.0);
  }

  50% {
    box-shadow:
      0 0 32px rgba(128, 26, 42, 0.55),
      0 0 16px rgba(128, 26, 42, 0.35);
  }

  100% {
    box-shadow:
      0 0 12px rgba(128, 26, 42, 0.25),
      0 0 0 rgba(128, 26, 42, 0.0);
  }
}
/* artykuł miesiąca – delikatniej */
.featured-box:not(.sponsored) {
  animation: redPulse 5s ease-in-out infinite;
}

/* sponsorowany – bardziej widoczny */
.featured-box.sponsored {
  animation: redPulse 3s ease-in-out infinite;
}
/* =========================
   STICKY NAVIGATION
========================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  backdrop-filter: blur(10px);
  background: rgba(15, 23, 42, 0.45);
  border-bottom: 1px solid rgba(255,255,255,0.05);

  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* PO SCROLLU CIEMNIEJSZE */
.site-nav.scrolled {
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.nav-logo {
  font-family: 'Raleway';
  font-weight: 900;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
}

/* DESKTOP LINKS */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
   font-family: 'Raleway';
  text-decoration: none;
  font-size: 1.2rem;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: rgb(201, 99, 114);
}

/* =========================
   MOBILE
========================= */

/* HAMBURGER */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: 0.3s ease;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem 2rem;
  background: rgba(15, 23, 42, 0.95);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.mobile-menu a {
  padding: 0.8rem 0;
  text-decoration: none;
  color: #e2e8f0;
}

.mobile-menu a:hover {
  color: rgb(201, 99, 114);
}

.mobile-menu.active {
  display: flex;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* DODAJ ODSTĘP NA GÓRZE STRONY */
body {
  padding-top: 70px;
}
.logo-accent {
  color: #7dd3fc;
    font-weight: 800;
}
/* =========================
   FOOTER – FINAL VERSION
========================= */

.site-footer {
  margin-top: 3rem;
  padding-top: 2.5rem;

  background: linear-gradient(
    180deg,
    rgba(15,23,42,0.96),
    rgba(2,6,23,1)
  );

  border-top: 1px solid rgba(255,255,255,0.06);
}

/* GŁÓWNY UKŁAD */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;

  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;

  align-items: start;
}

/* LOGO */
.footer-logo {
  font-size: 1.5rem; /* większa czcionka */
  font-weight: 700;
  margin-bottom: 1rem;
}

/* OPIS */
.footer-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94a3b8;
  max-width: 560px;
}
.logo-accent2 {
  font-weight: 800;
  color:#e2e8f0;
}
/* PRAWA STRONA */
.footer-menu-title {
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #cbd5e1;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  text-decoration: none;
  color: #e2e8f0;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: rgb(201, 99, 114);
}

/* DÓŁ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 2rem;
  text-align: center;
}

.footer-seo {
  font-size: 0.75rem;
  color: rgb(201, 99, 114);
  margin-bottom: 0.6rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-description {
    max-width: 100%;
  }

  .footer-right {
    margin-top: 1rem;
  }

  .footer-nav {
    align-items: center;
  }
}
/* =========================
   ABOUT SECTION
========================= */

.about-hero {
  padding: 5rem 2rem;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;

  align-items: center;
}

/* LEWA STRONA */

.about-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgb(201, 99, 114);
}

.about-left h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
  margin: 1rem 0;
}

.about-divider {
  width: 120px;
  height: 2px;
  margin: 1rem 0 1.8rem;
  background: linear-gradient(
    90deg,
    rgba(128, 26, 42, 0.9),
    rgba(125, 211, 252, 0.8)
  );
  border-radius: 2px;
}

.about-lead {
  font-size: 1.05rem;
  margin-bottom: 1.4rem;
  color: #e2e8f0;
}

.about-left p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #94a3b8;
  margin-bottom: 1rem;
}

/* PRAWA STRONA */

.about-right img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  max-height: 400px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {

  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-left h1 {
    font-size: 1.8rem;
  }

  .about-right img {
    max-height: 350px;
  }

}
/* =========================
   ARTICLES PAGE
========================= */

.articles-page {
  padding: 5rem 2rem;
}

.articles-header {
  text-align: center;
  margin-bottom: 3rem;
}

.articles-header h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
}

.articles-divider {
  width: 120px;
  height: 2px;
  margin: 1rem auto 0;
  background: linear-gradient(
    90deg,
    rgba(128, 26, 42, 0.9),
    rgba(125, 211, 252, 0.8)
  );
}

.articles-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.article-card a {
  text-decoration: none;
  color: #e2e8f0;
}

.article-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.article-card h3 {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.article-date {
  font-size: 0.75rem;
  color: #94a3b8;
}

.article-card:hover h3 {
  color: rgb(201, 99, 114);
}

.hidden {
  display: none;
}

/* MOBILE */

@media (max-width: 900px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }
}