/**handles:fajne-style-main**/
/*
Theme Name: fajne.life
Description: Własny motyw oparty na minimalnym szkielecie
Version: 1.04
Author: Grzegorz Sztank
*/

:root {
  --background-color: #fff;
  --text-color: #000;
  --link-color: #222;
  --link-hover: #000;
  --max-width: 740px;
  --font-size: 1rem;
  --font-family: 'Manrope', sans-serif;
  --border-color: #ddd;
  --changelog-bg: #f5f5f5;
}

@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #111;
    --text-color: #eee;
    --link-color: #ccc;
    --link-hover: #fff;
    --border-color: #333;
    --changelog-bg: #1a1a1a;
  }

  footer {
    color: #777;
  }

  .changelog-meta time,
  .changelog-content p,
  .changelog-content li {
    color: #ccc;
  }

  .data-wpisu {
    color: #eee;
  }

  .data-wpisu a {
    color: #eee;
  }

  .data-wpisu a:hover {
    color: #fff;
  }
}

body {
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: var(--font-family);
  font-size: var(--font-size);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 1rem;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

a {
  color: var(--link-color);
  text-decoration: none;
}
a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

header, footer, main {
  width: 100%;
  max-width: var(--max-width);
}





/* Nowa wyszukiwarka aplikacyjna */
.search-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.search-overlay.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}



.search-modal {
  width: 90%;
  max-width: 700px;
  background: var(--background-color);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.search-overlay.active .search-modal {
  transform: scale(1);
}

.search-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.search-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.search-shortcut {
  background: rgba(0, 0, 0, 0.1);
  color: var(--text-color);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  min-width: 2.5rem;
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  .search-shortcut {
    background: rgba(255, 255, 255, 0.1);
  }
}

.search-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-color);
  border-radius: 6px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  position: relative;
}

.search-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--link-hover);
}

.search-close svg {
  width: 20px;
  height: 20px;
  pointer-events: none;
}

@media (prefers-color-scheme: dark) {
  .search-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.search-form {
  padding: 2rem;
}

.search-input-wrapper {
  position: relative;
  margin-bottom: 1rem;
}

.search-input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  opacity: 0.6;
}

.live-search-input {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  font-size: 1.1rem;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  background: var(--background-color);
  color: var(--text-color);
  outline: none;
  transition: border-color 0.2s ease;
}

.live-search-input:focus {
  border-color: var(--link-hover);
}

.live-search-results {
  max-height: 400px;
  overflow-y: auto;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  background: var(--background-color);
}

.search-results-content {
  padding: 0.5rem;
}

.live-search-results ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.live-search-results li {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.live-search-results li:last-child {
  border-bottom: none;
}

.live-search-results a {
  color: var(--text-color);
  text-decoration: none;
}

.live-search-results a:hover {
  color: var(--link-hover);
}

/* Modal skrótów klawiaturowych */
.shortcuts-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.shortcuts-modal.active {
  opacity: 1;
}

.shortcuts-modal-content {
  background: var(--background-color);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  width: 90%;
  max-height: 80vh;
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.shortcuts-modal.active .shortcuts-modal-content {
  transform: scale(1);
}

.shortcuts-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.shortcuts-modal-header h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-color);
}

.shortcuts-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-color);
  border-radius: 6px;
  transition: all 0.2s ease;
  font-size: 1.5rem;
  line-height: 1;
}

.shortcuts-modal-close:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--link-hover);
}

@media (prefers-color-scheme: dark) {
  .shortcuts-modal-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
}

.shortcuts-modal-body {
  padding: 2rem;
  max-height: 60vh;
  overflow-y: auto;
}

.shortcuts-intro {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.8;
}

.shortcuts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shortcut-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.shortcut-item:last-child {
  border-bottom: none;
}

.shortcut-key {
  background: var(--changelog-bg);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: 'SF Mono', 'Monaco', 'Inconsolata', 'Roboto Mono', monospace;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-color);
  min-width: 80px;
  text-align: center;
}

.shortcut-description {
  color: var(--text-color);
  font-size: 0.9rem;
}

/* Responsywność wyszukiwarki */
@media (max-width: 768px) {
  .search-modal {
    width: 95%;
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .search-header {
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    background: var(--background-color);
    z-index: 1;
  }
  
  .search-form {
    padding: 1.5rem;
  }
  
  .search-title {
    font-size: 1.1rem;
  }
  
  .search-shortcut {
    display: none;
  }
  
  .search-input-wrapper {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .live-search-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--background-color);
    color: var(--text-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
  }
  
  .search-input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
    opacity: 0.6;
  }
  
  .shortcuts-modal-content {
    width: 95%;
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .shortcuts-modal-header {
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    background: var(--background-color);
    z-index: 1;
  }
  
  .shortcuts-modal-body {
    padding: 1.5rem;
  }
  
  .shortcuts-intro {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  
  .shortcuts-list {
    gap: 0.5rem;
  }
  
  .shortcut-item {
    padding: 0.5rem 0;
  }
  
  .shortcut-key {
    min-width: 60px;
    font-size: 0.8rem;
  }
  
  .shortcut-description {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .search-modal {
    width: 98%;
    margin: 0.5rem;
  }
  
  .search-header {
    padding: 1rem;
  }
  
  .search-form {
    padding: 1rem;
  }
  
  .live-search-input {
    font-size: 1rem;
    padding: 0.75rem 0.75rem 0.75rem 2.5rem;
  }
  
  .search-input-icon {
    left: 0.75rem;
  }
}

/* Style dla strony statycznej */
.content {
  width: 100%;
  max-width: var(--max-width);
}



h1, h2, h3 {
  font-weight: 600;
  line-height: 1.3;
  margin: 2rem 0 1rem;
}

.section-title {
  font-size: 1.5rem;
  margin: 0 0 1rem;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 0.5rem;
}



/* mikro blog */
.micro-posts {
  margin-bottom: 2rem;
}
.micro-posts article {
  margin-bottom: 1rem;
}
.micro-posts article time {
  font-weight: 600;
  margin-right: 0.5rem;
  display: inline;
}
.micro-posts article p {
  display: inline;
}

/* changelog */
.changelog {
  margin-bottom: 1rem;
}

.changelog-preview {
  background: var(--changelog-bg);
  padding: 1rem;
  border-radius: 4px;
  margin: 0;
}
.changelog-preview h2 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}
.changelog-preview ul {
  margin: 0;
  padding-left: 1.2rem;
}

/* Ikony dla różnych typów wpisów - wychodzą poza lewą krawędź */
.changelog-icon,
.micro-icon,
.mikrodziennik-icon,
.article-icon {
  position: absolute;
  left: -2rem;
  top: 0.1rem;
  font-size: 1.2em;
  z-index: 1;
}

.micro-icon {
  left: -1rem;
  margin-top: -2px;;
}

.changelog-icon img,
.micro-icon img,
.mikrodziennik-icon img,
.article-icon img {
  width: 1.2em;
  height: 1.2em;
}

/* Minimalistyczny tytuł changelog */
.changelog .changelog-title {
  font-weight: 400;
  font-size: 0.95rem;
  font-style: italic;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: inherit;
}

.changelog .changelog-title:hover {
  text-decoration: underline;
}

.changelog .changelog-naglowek {
  position: relative;
  padding-left: 0;
  margin-bottom: 0.2em;
}

/* przyciski */
.more-button {
  display: inline-block;
  margin-top: 0.3rem;
  font-size: 0.85rem;
  background: #f0f0f0;
  color: #333;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.more-button:hover {
  background: #ddd;
  color: var(--link-hover);
}

/* stopka */
footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.85rem;
}



.data-wpisu {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 0.5rem;
  position: relative;
}

.data-wpisu a {
  color: #000;
  text-decoration: none;
}

.data-wpisu a:hover {
  color: #333;
  text-decoration: underline;
}

@media (prefers-color-scheme: dark) {
  .data-wpisu {
    color: #eee;
    border-bottom-color: #444;
  }

  .data-wpisu a {
    color: #eee;
  }

  .data-wpisu a:hover {
    color: #fff;
  }
}

.data-wpisu::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 3rem;
  height: 2px;
  background: #999;
}

.oddzielenie-dni {
  border: 0;
  border-top: 1px solid #444;
  margin: 2rem 0;
}

.post-micro p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.post-artykul {
  margin-bottom: 1.5rem;
}

.post-micro {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.micro-time {
  font-weight: bold;
  color: #888;
  margin-right: 0.5rem;
  text-decoration: underline;
  font-family: monospace;
  margin-top: -1px;
}

.micro-time:hover {
  color: #ccc;
  text-decoration: underline;
}

.artykul-tytul {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.artykul-content {
  position: relative;
  padding-left: 1rem;
}

.artykul-zajawka {
  font-size: 1rem;
  line-height: 1.6;
}

.mikrodziennik {
  font-size: 1rem;
  margin: 0.25rem 0;
  line-height: 1.4;
}

.mikrodziennik-tresc {
  padding: 0.5rem 1rem;
  margin-left: 1rem;
  position: relative;
}

.micro-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.micro-time {
  font-weight: bold;
  color: #888;
  text-decoration: none;
  font-family: monospace;
  flex-shrink: 0;
  margin-top: 0.1rem;
  margin-left: 1rem;
}

.micro-time:hover {
  color: #ccc;
  text-decoration: underline;
}

.micro-text {
  flex: 1;
}

.micro-text p {
  margin: 0 0 0.5rem 0;
}

.micro-text p:last-child {
  margin-bottom: 0;
}

.post-micro {
  position: relative;
  padding-left: 0;
  margin-left: -1rem;
}

.post-artykul {
  position: relative;
  padding-left: 0;
  margin-left: 0;
}

.mikrodziennik {
  position: relative;
  padding-left: 0;
  margin-left: -1rem;
  margin-bottom: 0.5rem;
}

/* Style dla przycisków Patreon w mikrodzienniki */
.mikrodziennik .patreon-buttons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Usunięto starą ikonę ::before dla mikrowpisów */

/* Style dla formatu Micro na stronie pojedynczego wpisu */
.single .post-micro {
  margin-left: -1rem;
  padding-left: 0;
}

.single .post-micro::before {
  left: -1rem;
  top: 0;
}

.single .micro-header {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.single .micro-date-time {
  font-weight: bold;
  color: #888;
  font-family: monospace;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.single .micro-label {
  font-size: 0.8rem;
  font-style: italic;
  color: #888;
  margin-bottom: 1rem;
}

.single .micro-label a {
  color: #888;
  text-decoration: none;
}

.single .micro-label a:hover {
  color: #ccc;
  text-decoration: underline;
}

.single .micro-label-line {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.single .micro-content {
  margin-bottom: 1rem;
  margin-left: 1rem;
}

.single .micro-text {
  font-size: 1rem;
  line-height: 1.6;
}

@media (prefers-color-scheme: dark) {
  .single .micro-date-time {
    color: #ccc;
  }
  
  .single .micro-label,
  .single .micro-label a {
    color: #999;
  }
  
  .single .micro-label a:hover {
    color: #ccc;
  }
}

/* Style dla artykułów na stronie pojedynczego wpisu */
.single .post-artykul {
  margin-left: -1rem;
  padding-left: 0;
}

/* Usunięto starą ikonę ::before dla artykułów na stronie pojedynczego wpisu */

/* Style dla strony kategorii - identyczne jak strona główna */
.strumien-zycia .post-micro {
  position: relative;
  padding-left: 0;
  margin-left: -1rem;
}

/* Usunięto starą ikonę ::before dla mikrowpisów na stronie kategorii */

.strumien-zycia .post-artykul {
  position: relative;
  padding-left: 0;
  margin-left: 0;
}

/* Usunięto starą ikonę ::before dla artykułów na stronie kategorii */

.strumien-zycia .micro-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.strumien-zycia .micro-time {
  font-weight: bold;
  color: #888;
  text-decoration: none;
  font-family: monospace;
  flex-shrink: 0;
  margin-top: 0.1rem;
  margin-left: 1rem;
}

.strumien-zycia .micro-time:hover {
  color: #ccc;
  text-decoration: underline;
}

.strumien-zycia .micro-text {
  flex: 1;
}

.strumien-zycia .micro-text p {
  margin: 0 0 0.5rem 0;
}

.strumien-zycia .micro-text p:last-child {
  margin-bottom: 0;
}

.strumien-zycia .artykul-content {
  position: relative;
  padding-left: 1rem;
}

.strumien-zycia .artykul-tytul {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.strumien-zycia .artykul-zajawka {
  font-size: 1rem;
  line-height: 1.6;
}

/* Tagi na stronie kategorii */
.strumien-zycia .artykul-tags {
  margin-left: 0;
}

.strumien-zycia .micro-tags {
  margin-left: 5rem !important;
  margin-top: -1rem !important;
}

/* Sekcje na stronie kategorii */
.strumien-zycia .section-wrapper {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
}

.strumien-zycia .section-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  margin-top: 1rem;
}

.single .artykul-content {
  margin-left: 1rem;
  padding-left: 0;
}

.single .post-artykul h1 {
  margin-left: 1rem;
}

/* Style dla tagów */
.post-tags {
  margin: 0.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-link {
  display: inline-block;
  background: #eee;
  color: #333;
  text-decoration: none;
  padding: 0.1rem 0.4rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tag-link:hover {
  background: #ddd;
  color: #000;
  transform: translateY(-1px);
}

/* Tagi dla artykułów - między tytułem a treścią */
.artykul-tags {
  margin-left: 0;
}

/* Tagi dla mikrowpisów - pod treścią */
.micro-tags {
  margin-left: 5rem !important;
  margin-top: -1rem !important;

}

/* Tagi w pojedynczych wpisach */
.single .artykul-tags {
  margin-left: 15px;
}

.single .micro-tags {
  margin: -15px 0 0 -5px;
}

/* Usunięto starą ikonę ::before dla mikrodzienników */

/* Usunięto starą ikonę ::before dla artykułów */

.sd-block {margin-top: 40px}


article + article {
  margin-top: 0rem;
}

/* Infinite Scroll */
.load-more-wrapper {
  margin: 3rem 0;
}

.load-more-container {
  text-align: center;
}

.load-more-btn {
  background: #000;
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.load-more-btn:hover {
  background: #333;
  transform: translateY(-2px);
}

.load-more-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

@media (prefers-color-scheme: dark) {
  .load-more-btn {
    background: #fff;
    color: #000;
  }
  
  .load-more-btn:hover {
    background: #eee;
  }
  
  .load-more-btn:disabled {
    background: #666;
    color: #999;
  }
}

/* Paginacja */
.pagination {
  margin: 3rem 0;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: #f0f0f0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.pagination .page-numbers:hover {
  background: #ddd;
}

.pagination .current {
  background: #000;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  font-weight: 600;
}

@media (prefers-color-scheme: dark) {
  .pagination .page-numbers {
    background: #333;
    color: #fff;
  }
  
  .pagination .page-numbers:hover {
    background: #555;
  }
  
  .pagination .current {
    background: #fff;
    color: #000;
  }
}

/* Wymuszony minimalistyczny styl tytułu changelog */
.changelog .changelog-title {
  font-weight: 400 !important;
  font-size: 1.1rem !important;
  letter-spacing: 0.01em !important;
}

/* Style dla sekcji "tego samego dnia" */
.same-day-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.same-day-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.same-day-posts {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.same-day-post {
  margin-bottom: 0;
}

.same-day-post .micro-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.same-day-post .micro-time {
  font-weight: bold;
  color: #888;
  text-decoration: none;
  font-family: monospace;
  flex-shrink: 0;
  margin-top: 0.1rem;
  margin-left: 1rem;
}

.same-day-post .micro-text {
  flex: 1;
}

.same-day-post .micro-text p {
  margin: 0 0 0.5rem 0;
}

.same-day-post .micro-text p:last-child {
  margin-bottom: 0;
}

.same-day-post .artykul-content {
  position: relative;
  padding-left: 1rem;
}

.same-day-post .artykul-tytul {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.same-day-post .artykul-tytul a {
  color: var(--text-color);
  text-decoration: none;
}

.same-day-post .artykul-tytul a:hover {
  text-decoration: underline;
}

.same-day-post .artykul-zajawka {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

.same-day-post .artykul-tags {
  margin-left: 0;
  margin-top: 0.5rem;
}

.same-day-post .micro-tags {
  margin-left: 5rem !important;
  margin-top: -0.5rem !important;
}

/* Style dla wpisów changelog w sekcji "tego samego dnia" */
.same-day-post.changelog {
  margin-bottom: 0;
}

.same-day-post .changelog-naglowek {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.same-day-post .changelog-icon {
  flex-shrink: 0;
  margin-top: 0.1rem;
  margin-left: 0;
}

.same-day-post .changelog-title {
  flex: 1;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  text-decoration: none;
}

.same-day-post .changelog-title:hover {
  text-decoration: underline;
}

.same-day-post .changelog-tresc {
  margin-left: 5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
}

/* Style dla pojedynczych postów micro */
.single .post-micro {
  margin-bottom: 0rem;
}

.single .post-micro .micro-content {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.single .post-micro .micro-time {
  font-weight: bold;
  color: #888;
  text-decoration: none;
  font-family: monospace;
  flex-shrink: 0;
  margin-top: 0.1rem;
  margin-left: 1rem;
}

.single .post-micro .micro-text {
  flex: 1;
}

.single .post-micro .micro-text p {
  margin: 0 0 0.5rem 0;
}

.single .post-micro .micro-text p:last-child {
  margin-bottom: 0;
}

.single .post-micro .micro-tags {
  margin-left: 5rem !important;
  margin-top: -0.5rem !important;
}

/* Dark mode dla sekcji "tego samego dnia" */
@media (prefers-color-scheme: dark) {
  .same-day-title {
    color: var(--text-color);
  }
  
  .same-day-post .artykul-zajawka {
    color: #ccc;
  }
  
  .same-day-post .micro-time {
    color: #aaa;
  }
}

/* Wymuszone wyrównanie micro-content do lewej na stronie pojedynczego wpisu micro i w sekcji tego samego dnia */
.single .post-micro .micro-content,
.same-day-post .micro-content {
  margin-left: 0 !important;
  padding-left: 0 !important;
}