body {
    background-color: #000;
    color: #fff;
}

body span,
body p,
body a {
    color: #fff;
}

h1, .h1,
h2, .h2,
h3, .h3,
h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span
{
    background-image: linear-gradient(
    30deg,
    #FFE26E 0%,
    #D9A945 8%,
    #B3701B 19%,
    #A65D0D 29%,
    #CEA54D 45%,
    #FFFF9D 58%,
    #E1BE5D 74%,
    #FFFFA9 100%
  );
    color: transparent;
    -webkit-background-clip: text;
}

.btn-primary, .bg-primary {
    color: #fff;
    border: none;
    background-image: linear-gradient(
    30deg,
    #FFE26E 0%,
    #D9A945 8%,
    #B3701B 19%,
    #A65D0D 29%,
    #CEA54D 45%,
    #D9A945 58%,
    #E1BE5D 74%,
    #FFFFA9 100%
  );
}

.btn-link {
	--bs-btn-color: var(--bs-light);
}

.btn-link:hover, main a:hover {
	color: #E1BE5D;
}

body.page-news main a {
  text-decoration: underline;
  color: #fff;
}

.youtube-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* proporcje 16:9 (9 / 16 = 0.5625) */
  height: 0;
  overflow: hidden;
  border-radius: 8px; /* opcjonalnie zaokrąglenie rogów */
  margin-bottom: 1.5rem;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.sanweb-gold {
    font-size: 1.5rem;
    background-image: linear-gradient(
    30deg,
    #FFE26E 0%,
    #D9A945 8%,
    #B3701B 19%,
    #A65D0D 29%,
    #CEA54D 45%,
    #FFFF9D 58%,
    #E1BE5D 74%,
    #FFFFA9 100%
  );
    color: transparent;
    -webkit-background-clip: text;
}

.sanweb-logo {

    display: inline-block;
    width: 160px;
  height: inherit;

}

main li {
  margin-bottom: 1rem;
}

.sanweb-animation {
  overflow: hidden;
}

.sanweb-animation > span {
  display: inline-block;
  transform: translateY(100%);
  transition: transform 0.8s ease-out; /* szybkie wysuniÄ™cie */
}

.sanweb-animation.visible > span {
  transform: translateY(0);
}

body.page-101 main h2, body.page-102 main h2, body.page-105 main h2 {
    font-size: calc(1.35rem + 1.2vw);
    margin-bottom: 1.5rem !important;
  }

  body.page-101 main p, body.page-102 main p, body.page-105 main p {
margin-bottom: 1.75rem !important;
position: relative;
  margin-top: -1.25rem;
  }

@media (min-width: 1200px) {
  body.page-101 main h2, body.page-102 main h2, body.page-105 main h2 {
    font-size: 2.25rem;
  }
}

/* ======== TABELE ======== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  background: rgba(30, 30, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
}

/* Nagłówek tabeli */
thead th {
  background: rgba(0, 180, 255, 0.15);
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  letter-spacing: 0.4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Komórki tabeli */
tbody td {
  padding: 12px 16px;
  vertical-align: top;
  font-size: 0.95rem;
}

/* Kolumny: 80% / 20% */
tbody td:first-child {
  width: 80%;
}

thead th:last-child, tbody td:last-child {
  width: 20%;
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
}

/* Co drugi wiersz z subtelnym efektem */
tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.06);
}

/* Efekt hover */
tbody tr:hover {
  background: rgba(0, 180, 255, 0.15);
  transition: background 0.2s ease;
}

/* Responsywność dla mniejszych ekranów */
@media (max-width: 600px) {
  tbody td {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}