/*
Theme Name: Być bliżej siebie
Theme URI: https://bycblizejsiebie.jm-art.eu/
Author: JM Art / Codex
Description: Delikatny, akwarelowy motyw osobistego bloga Asi o emocjach, twórczości i muzyce AI.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: byc-blizej-siebie
*/

:root {
  --paper: #f8f7fb;
  --paper-warm: #fffdfb;
  --ink: #10234a;
  --ink-soft: #34466e;
  --blue: #6f8fcb;
  --lavender: #b9a7e8;
  --lavender-soft: #d9d0f4;
  --mist: #ddebff;
  --peach: #f4dccf;
  --line: rgba(16, 35, 74, 0.14);
  --shadow: 0 22px 60px rgba(45, 55, 98, 0.14);
  --shadow-soft: 0 10px 34px rgba(45, 55, 98, 0.11);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(rgba(248, 247, 251, 0.54), rgba(248, 247, 251, 0.58)),
    url("assets/images/background.png") center top / 100% auto repeat-y;
  font-family: "Source Sans 3", "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: var(--radius);
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 28px), 1240px);
  margin: 18px auto 0;
  padding: 12px 28px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 8px;
  background: #fbf8ff;
  box-shadow: 0 12px 38px rgba(45, 55, 98, 0.1);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(190px, 24vw, 330px);
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--ink);
  font-size: 1rem;
}

.main-nav a {
  position: relative;
  padding: 8px 4px;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 0;
  height: 2px;
  border-radius: 99px;
  background: var(--lavender);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.main-nav a.is-active {
  color: #6d55b4;
  font-weight: 700;
}

.main-nav span {
  color: rgba(16, 35, 74, 0.38);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.page {
  display: none;
  animation: pageIn 340ms ease both;
}

.page.is-active {
  display: block;
}

@keyframes pageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translateX(-32px);
}

.reveal-right {
  transform: translateX(32px);
}

.reveal-soft {
  transform: translateY(18px) scale(0.985);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-soft.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(calc(100% - 28px), 1240px);
  min-height: clamp(350px, 48vh, 476px);
  margin: 18px auto 0;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--mist);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

.hero-video,
.hero-softener {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  display: block;
  object-fit: cover;
}

.hero-softener {
  display: block;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 0%, rgba(255, 255, 255, 0.58) 34%, rgba(255, 255, 255, 0.05) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(248, 247, 251, 0.7));
}

.hero::after {
  content: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(610px, 92%);
  padding: clamp(42px, 5.6vw, 84px) clamp(24px, 8vw, 92px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 8px;
  color: #7f68b7;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.06;
}

.hero h1 {
  font-size: clamp(3.1rem, 6.3vw, 5.95rem);
  animation: floatText 7s ease-in-out infinite;
}

.hero h1 span {
  display: block;
  color: #5168a7;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-weight: 400;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(280px, 100%);
  margin: 18px 0 10px;
  color: var(--lavender);
  animation: floatTiny 8s ease-in-out infinite;
}

.ornament-left {
  justify-content: flex-start;
}

.ornament span {
  width: 92px;
  height: 1px;
  background: rgba(16, 35, 74, 0.22);
}

.ornament b {
  font-size: 1.1rem;
  line-height: 1;
}

.hero-lead {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.hero-actions,
.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(55, 65, 112, 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(55, 65, 112, 0.18);
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-lavender {
  background: linear-gradient(135deg, #cdb8ee, #a987d5);
  color: white;
}

.button-quiet {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: none;
}

.content-wrap {
  width: min(calc(100% - 28px), var(--max));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: 22px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}

.soft-card,
.post-card,
.song-card,
.article-view {
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.intro-card,
.featured-note {
  padding: clamp(24px, 4vw, 38px);
}

.intro-card h2,
.featured-note h2,
.section-heading h2,
.article-view h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.intro-card p,
.featured-note p,
.section-copy,
.page-hero p,
.music-copy p,
.about-copy p,
.article-body p {
  color: var(--ink-soft);
}

.featured-note img {
  width: 96px;
  margin-bottom: 12px;
  animation: floatImage 7s ease-in-out infinite;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #315a9e;
  font-weight: 700;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.section-block {
  margin-top: clamp(54px, 8vw, 86px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-heading-simple {
  align-items: start;
}

.section-copy {
  max-width: 680px;
  margin: -8px 0 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.post-card {
  overflow: hidden;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.post-card-image {
  position: relative;
  aspect-ratio: 1.2 / 1;
  overflow: hidden;
  background: var(--mist);
}

.post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 420ms ease;
}

.post-card:hover .post-card-image img {
  transform: scale(1.035);
}

.post-card:nth-child(2n) .post-card-image img {
  animation: floatImageSlow 9s ease-in-out infinite;
}

.post-card:nth-child(2n + 1) .post-card-image img {
  animation: floatImage 8s ease-in-out infinite;
}

.post-card-content {
  padding: 22px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  color: #7b689c;
  font-size: 0.88rem;
}

.post-meta .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lavender);
}

.post-card h3 {
  font-size: clamp(1.55rem, 2.5vw, 2rem);
}

.post-card p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.post-card .text-link {
  margin-top: 18px;
}

.song-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.song-card {
  padding: 14px;
}

.song-card-inner {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.song-card img {
  width: 92px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.song-card h3 {
  font-size: 1.28rem;
}

.song-card p {
  margin: 2px 0 10px;
  color: #7b689c;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mini-player {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.play-button {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.play-button:hover {
  transform: scale(1.05);
  background: #1a3772;
}

.play-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.global-stop {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background: rgba(16, 35, 74, 0.92);
  color: white;
  box-shadow: 0 14px 32px rgba(16, 35, 74, 0.2);
  cursor: pointer;
  font-weight: 800;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  backdrop-filter: blur(12px);
}

.global-stop[hidden] {
  display: none;
}

.global-stop:hover {
  background: #1a3772;
  transform: translateY(-2px);
}

.global-stop svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linejoin: round;
}

.progress {
  width: 100%;
  height: 4px;
  accent-color: #6d55b4;
}

.closing-quote {
  display: flex;
  width: min(760px, 100%);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: clamp(54px, 8vw, 90px) auto;
  padding: 18px 0;
  color: var(--ink);
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  text-align: center;
}

.closing-quote::before,
.closing-quote::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(16, 35, 74, 0.16);
}

.closing-quote .quote-mark {
  color: var(--lavender);
  font-size: 2.6rem;
  line-height: 0;
}

.quote-text {
  display: inline;
  min-height: 1.7em;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.quote-text.is-typing::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 5px;
  background: var(--lavender);
  vertical-align: -0.08em;
  animation: caretBlink 900ms steps(2, start) infinite;
}

.page-hero {
  width: min(calc(100% - 28px), 950px);
  margin: 44px auto 34px;
  padding: clamp(52px, 8vw, 82px) 20px 18px;
  text-align: center;
}

.page-hero h1,
.music-copy h1,
.about-copy h1 {
  font-size: clamp(4rem, 8vw, 6.8rem);
}

.page-hero .ornament {
  margin-inline: auto;
}

.page-hero p {
  max-width: 730px;
  margin: 12px auto 0;
  font-size: 1.08rem;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.filter-row button {
  min-height: 42px;
  padding: 8px 22px;
  border: 1px solid rgba(16, 35, 74, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-row button:hover,
.filter-row button.is-active {
  background: var(--ink);
  color: white;
  transform: translateY(-1px);
}

.article-view {
  margin-top: 28px;
  padding: clamp(24px, 5vw, 56px);
}

.article-view[hidden] {
  display: none;
}

.article-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
}

.article-head img {
  width: 100%;
  max-height: 540px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: top center;
}

.article-view h2 {
  margin: 8px 0 14px;
}

.article-body {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1.08rem;
}

.article-body p {
  margin: 0 0 18px;
}

.music-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  width: min(calc(100% - 28px), 1240px);
  margin: 28px auto 0;
  padding: clamp(44px, 8vw, 86px);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.5)),
    url("assets/images/background.png") center / cover;
  box-shadow: var(--shadow);
}

.music-copy p {
  max-width: 540px;
  margin: 14px 0 0;
  font-size: 1.08rem;
}

.script-note {
  color: #8f70c9 !important;
  font-family: "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(1.8rem, 4vw, 3.1rem) !important;
}

.featured-player {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
}

.featured-player img {
  width: 220px;
  aspect-ratio: 1;
  border-radius: var(--radius);
  object-fit: cover;
}

.featured-player .section-kicker {
  margin-bottom: 10px;
}

.featured-player h2 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.featured-player p {
  margin: 8px 0 22px;
  color: var(--ink-soft);
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(24px, 6vw, 72px);
  align-items: center;
  width: min(calc(100% - 28px), 1240px);
  margin: 34px auto 0;
  padding: clamp(26px, 5vw, 54px);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  animation: floatImageSlow 9s ease-in-out infinite;
}

.about-copy h2 {
  margin-top: 24px;
  color: #5f4fa1;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-style: italic;
}

.about-signature {
  color: var(--ink) !important;
  font-size: 1.12rem;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, auto) minmax(130px, auto);
  gap: 28px;
  align-items: center;
  width: min(calc(100% - 28px), 1240px);
  margin: 28px auto 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  background: #fbf8ff;
  box-shadow: 0 10px 34px rgba(45, 55, 98, 0.08);
}

.site-footer img {
  width: min(280px, 100%);
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-self: end;
  text-align: right;
}

.site-footer a {
  color: var(--ink);
  text-decoration: none;
}

.site-footer a:hover {
  color: #6d55b4;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-socials a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 15px;
  border: 1px solid rgba(16, 35, 74, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 8px 20px rgba(45, 55, 98, 0.08);
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 26px rgba(45, 55, 98, 0.12);
}

.footer-socials span {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: #604d9f;
  font-size: 0.9rem;
  font-weight: 800;
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

@keyframes floatText {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes floatTiny {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

@keyframes floatImage {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-9px) scale(1.014);
  }
}

@keyframes floatImageSlow {
  0%,
  100% {
    transform: translateY(0) translateX(0) scale(1);
  }
  50% {
    transform: translateY(9px) translateX(-6px) scale(1.012);
  }
}

@keyframes caretBlink {
  0%,
  45% {
    opacity: 1;
  }
  46%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding: 10px 14px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 12px 8px;
  }

  .main-nav span {
    display: none;
  }

  .hero-content {
    padding-top: 72px;
  }

  .intro-grid,
  .music-hero,
  .about-layout,
  .article-head {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .song-strip,
  .song-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-player {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .featured-player img {
    width: 160px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    background-attachment: scroll;
  }

  .site-header {
    width: calc(100% - 18px);
    margin-top: 9px;
  }

  .brand {
    width: min(220px, calc(100% - 56px));
  }

  .hero,
  .music-hero,
  .about-layout,
  .page-hero,
  .content-wrap,
  .site-footer {
    width: calc(100% - 18px);
  }

  .hero {
    min-height: 430px;
  }

  .hero-softener {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.4) 62%, rgba(248, 247, 251, 0.72)),
      linear-gradient(90deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.12));
  }

  .hero-content {
    width: 100%;
    padding: 38px 20px;
  }

  .hero-actions,
  .article-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .intro-grid {
    margin-top: 16px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .card-grid,
  .song-strip,
  .song-grid {
    grid-template-columns: 1fr;
  }

  .song-card-inner,
  .featured-player {
    grid-template-columns: 1fr;
  }

  .song-card img,
  .featured-player img {
    width: 100%;
  }

  .song-card img {
    max-height: 260px;
  }

  .closing-quote {
    display: block;
    width: 100%;
    padding: 24px 18px;
    line-height: 1.55;
    overflow: hidden;
  }

  .closing-quote::before,
  .closing-quote::after {
    display: none;
  }

  .closing-quote .quote-mark {
    display: inline;
    font-size: 2rem;
    line-height: 1;
  }

  .quote-text {
    display: inline;
    overflow-wrap: normal;
    word-break: normal;
  }

  .music-hero,
  .about-layout {
    padding: 24px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .global-stop {
    right: 14px;
    bottom: 14px;
  }

  .footer-nav {
    justify-self: start;
    text-align: left;
  }

  .footer-socials {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-soft {
    opacity: 1;
    transform: none;
  }
}
:root {
/*
Theme Name: Być bliżej siebie
Theme URI: https://bycblizejsiebie.jm-art.eu/
Author: JM Art / Codex
Description: Delikatny, akwarelowy motyw osobistego bloga Asi o emocjach, twórczości i muzyce AI.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
Text Domain: byc-blizej-siebie
*/

:root {
