/* ===================================== */
/* Warrior Angel Studio – Redakcja */
/* Uniwersalny styl artykułów */
/* ===================================== */

:root{
  --bg-dark: #0a111a;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.82);

  --gold: #d4af37;
  --line: rgba(212,175,55,0.25);

  --maxw: 1000px;
}

/* RESET */
*{
  box-sizing: border-box;
}

body{
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.75;

  background:
    linear-gradient(
      rgba(10,17,26,0.88),
      rgba(10,17,26,0.95)
    ),
    url("studio.jpg") center center / cover no-repeat fixed;
}

/* ===================================== */
/* HEADER – WERSJA REDAKCYJNA */
/* ===================================== */

.site-header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(6px);
}

.header-left{
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  opacity: 0.9;
}

.header-right{
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  opacity: 0.95;
}

/* ===================================== */
/* WRAP */
/* ===================================== */

.wrap{
  width: min(var(--maxw), 100%);
  margin: 0 auto;
  padding: 70px 24px 100px 24px;
}

/* ===================================== */
/* HERO */
/* ===================================== */

.hero{
  text-align: center;
  margin-bottom: 70px;
}

.hero h1{
  font-size: clamp(40px, 5vw, 58px);
  margin-bottom: 16px;
  color: var(--gold);
}

.hero p{
  color: var(--muted);
  font-size: 18px;
}

/* ===================================== */
/* ARTYKUŁ */
/* ===================================== */

.article{
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 50px;
  background: rgba(10,17,26,0.78);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(4px);
}

/* Lead */
.article .lead{
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 40px;
  line-height: 1.6;
}

/* Sekcje */
.article h2{
  margin-top: 60px;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  color: var(--gold);
  font-size: 22px;
}

/* Tekst */
.article p{
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
}

/* Cytat */
.article blockquote{
  margin: 50px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--gold);
  background: rgba(212,175,55,0.1);
  font-style: italic;
}

/* Obrazy */
.article figure{
  margin: 60px 0;
  text-align: center;
}

/* Pierwszy obraz – delikatnie większy */
.article figure:first-of-type img{
  max-width: 700px;
}

/* Standardowy obraz */
.article figure img{
  width: 100%;
  max-width: 580px;
  display: block;
  margin: 0 auto;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 35px rgba(0,0,0,0.6);
  transition: 0.3s ease;
}

.article figure img:hover{
  box-shadow:
    0 0 22px rgba(212,175,55,0.28);
}

/* Podpis */
.article figcaption{
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted);
  opacity: 0.85;
}

/* Autor */
.article .author{
  margin-top: 80px;
  text-align: right;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* ===================================== */
/* STOPKA */
/* ===================================== */

.site-footer{
  margin-top: 100px;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(0,0,0,0.6);
}

/* ===================================== */
/* RESPONSYWNOŚĆ */
/* ===================================== */

@media (max-width: 768px){

  .site-header{
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .article{
    padding: 40px 28px;
  }

  .article p{
    font-size: 16px;
  }

}