/*
Theme Name: Blush Magazin
Theme URI: https://example.com/blush-magazin
Author: Blush
Description: Finom és nőies hírportál WordPress téma. Időjárás, árfolyam és Wikipédia „Ezen a napon” modulokkal, reszponzív hamburger menüvel.
Version: 1.0.0
Requires at least: 5.9
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blush-magazin
*/

/* ========== Base ========== */
:root {
  --brand-50: #fff1f2;
  --brand-100: #ffe4e6;
  --brand-200: #fecdd3;
  --brand-300: #fda4af;
  --brand-400: #fb7185;
  --brand-500: #f43f5e;
  --brand-600: #e11d48;
  --brand-700: #be123c;
  --brand-800: #9f1239;
  --brand-900: #881337;
  --bg-body: #fffcfb;
  --font-sans: 'Nunito', sans-serif;
  --font-display: 'Quicksand', sans-serif;
  --shadow-soft: 0 10px 40px -10px rgba(251, 113, 133, 0.12);
  --shadow-glow: 0 0 20px rgba(251, 113, 133, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: #44403c;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--brand-200);
  color: var(--brand-900);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--brand-200); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand-400); }

/* Utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hover-lift {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(251, 113, 133, 0.2);
}

/* Container */
.blush-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 1024px) {
  .blush-container { padding-left: 2rem; padding-right: 2rem; }
}

/* Header */
.blush-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 251, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--brand-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.blush-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.blush-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: #292524;
}

.blush-logo-mark {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to top right, var(--brand-300), var(--brand-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  box-shadow: var(--shadow-glow);
}

.blush-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.025em;
  color: #292524;
}

.blush-logo-text span { color: var(--brand-400); }

/* Egyéni logó – a sáv magasságához igazítva (5rem), szélét érinti */
.blush-logo .blush-logo-img {
  display: block;
  max-height: 4.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

.blush-footer-logo {
  display: inline-block;
  line-height: 0;
}

.blush-footer-logo .blush-logo-img {
  max-height: 3.25rem;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Nav desktop */
.blush-nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.blush-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.blush-nav ul li {
  margin: 0;
  padding: 0;
}

.blush-nav a {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: #78716c;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.blush-nav a:hover,
.blush-nav a.active,
.blush-nav .current-menu-item a {
  color: var(--brand-500);
  border-bottom-color: var(--brand-400);
}

/* Hamburger: show under 1000px */
.blush-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #57534e;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.blush-nav-toggle:hover {
  background: var(--brand-50);
  color: var(--brand-500);
}

/* Asztali nézet: menü sor, hamburger rejtve */
@media (min-width: 1000px) {
  .blush-nav { display: flex; }
  .blush-nav-toggle { display: none !important; }
  .blush-nav-mobile { display: none !important; }
}

/* Mobil menü: mindig rejtve alapból, csak mobilnál és is-open esetén látszik */
.blush-nav-mobile {
  display: none;
}

@media (max-width: 999px) {
  .blush-nav-mobile {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: calc(100vh - 5rem);
    height: calc(100dvh - 5rem);
    max-height: calc(100vh - 5rem);
    z-index: 9998;
    flex-direction: row;
    align-items: stretch;
  }

  .blush-nav-mobile:not(.is-open) {
    display: none !important;
  }

  .blush-nav-mobile.is-open {
    display: flex !important;
    touch-action: pan-y;
  }

  .blush-nav-mobile-panel {
    width: 85%;
    max-width: 320px;
    background: var(--bg-body);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    -webkit-overflow-scrolling: touch;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.08);
  }

  .blush-nav-mobile-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--brand-100);
  }

  .blush-nav-mobile-close {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #57534e;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
  }

  .blush-nav-mobile-close:hover {
    background: var(--brand-50);
    color: var(--brand-500);
  }

  .blush-nav-mobile .nav-menu {
    padding: 1rem 1.5rem;
  }

  .blush-nav-mobile-backdrop {
    flex: 1;
    min-width: 0;
    background: rgba(28, 25, 23, 0.35);
    cursor: pointer;
  }
}

/* Menü nyitva: háttér ne görgessen (mobilon megbízható lock) */
html.blush-menu-open {
  overflow: hidden;
}

body.blush-menu-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  /* top értékét JS állítja (scroll pozíció megőrzéséhez) */
}

/* Menü nyitva: a fejléc maradjon a viewport tetején (ne csússzon el a body-val) */
body.blush-menu-open .blush-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}

.blush-nav-mobile .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blush-nav-mobile .nav-menu li { margin-bottom: 0.5rem; }

.blush-nav-mobile .nav-menu a,
.blush-nav-mobile a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: #44403c;
  text-decoration: none;
  border-radius: 0.75rem;
  transition: background 0.2s, color 0.2s;
}

.blush-nav-mobile .nav-menu a:hover,
.blush-nav-mobile .nav-menu a.active,
.blush-nav-mobile .current-menu-item a,
.blush-nav-mobile a:hover {
  background: var(--brand-50);
  color: var(--brand-500);
}

/* Header actions */
.blush-header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blush-header-actions .search-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #57534e;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.blush-header-actions .search-btn:hover {
  background: var(--brand-50);
  color: var(--brand-500);
}

/* Kereső overlay – asztalon és mobilon is, mobil menü fölött */
.blush-search-overlay {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  right: 0;
  background: white;
  z-index: 9999;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid var(--brand-100);
}

.blush-search-overlay.is-open {
  display: block;
}

.blush-search-overlay-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.blush-search-overlay-row .blush-search-form {
  flex: 1;
  min-width: 0;
}

.blush-search-overlay-close {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  min-width: 44px;
  min-height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--brand-50);
  color: var(--brand-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.blush-search-overlay-close:hover {
  background: var(--brand-100);
  color: var(--brand-600);
}

/* Article body (single post) */
.article-body p { margin-bottom: 1.75rem; }

.article-body h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.875rem;
  color: #292524;
  margin-top: 3rem;
  margin-bottom: 1.25rem;
}

.article-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 2rem;
}

.article-body ul li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
}

.article-body ul li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.9rem;
}

.article-body a {
  color: var(--brand-500);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s;
}

.article-body a:hover {
  color: var(--brand-600);
}

/* Bejegyzés alatti szerző életrajz (single) */
.blush-author-bio {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--brand-100);
}

.blush-author-bio-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.blush-author-bio-avatar {
  flex-shrink: 0;
  display: block;
  line-height: 0;
}

.blush-author-bio-avatar-img {
  width: 80px;
  height: 80px;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
  border: 2px solid white;
  transition: opacity 0.2s;
}

.blush-author-bio-avatar:hover .blush-author-bio-avatar-img {
  opacity: 0.9;
}

.blush-author-bio-content {
  flex: 1;
  min-width: 0;
}

.blush-author-bio-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--brand-400);
  margin-bottom: 0.35rem;
}

.blush-author-bio-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.blush-author-bio-name a {
  color: #292524;
  text-decoration: none;
  transition: color 0.2s;
}

.blush-author-bio-name a:hover {
  color: var(--brand-500);
}

.blush-author-bio-desc {
  font-size: 0.9375rem;
  color: #57534e;
  line-height: 1.6;
  margin: 0;
}

/* Footer */
.blush-footer {
  background: white;
  color: #78716c;
  padding-top: 3rem;
  padding-bottom: 3rem;
  border-top: 1px solid var(--brand-100);
  margin-top: 2rem;
}

.blush-footer-links a {
  color: inherit;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.blush-footer-links a:hover { color: var(--brand-500); }

/* Front-page widgets */
.blush-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.blush-hero-main {
  min-height: 280px;
}

@media (max-width: 767px) {
  .blush-hero-main {
    min-height: 360px;
  }
  .blush-hero-main h1 {
    font-size: 1.5rem !important;
    line-height: 1.25;
  }
}

.blush-weather-box {
  background: linear-gradient(to bottom right, var(--brand-300), var(--brand-400));
  border-radius: 1.5rem;
  padding: 1.5rem;
  color: white;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blush-finance-box {
  background: white;
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 1px solid var(--brand-100);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.blush-finance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 241, 242, 0.5);
  border-radius: 1rem;
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid transparent;
  transition: border-color 0.2s;
}
.blush-finance-row:hover { border-color: var(--brand-100); }
.blush-finance-row:last-child { margin-bottom: 0; }

.blush-wiki-section {
  background: var(--brand-50);
  border-radius: 2rem;
  padding: 1.5rem 1.5rem 2rem;
  border: 1px solid var(--brand-100);
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .blush-wiki-section { padding: 2rem 2.5rem; }
}

.blush-wiki-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .blush-wiki-inner {
    flex-direction: row;
    gap: 2.5rem;
    align-items: flex-start;
  }
  .blush-wiki-header {
    flex: 0 0 auto;
    width: 25%;
    text-align: left;
    border-bottom: none;
    border-right: 1px solid var(--brand-200);
    padding-bottom: 0;
    padding-right: 1.5rem;
  }
  .blush-wiki-content {
    flex: 1;
    min-width: 0;
  }
}

.blush-wiki-header {
  text-align: center;
  border-bottom: 1px solid var(--brand-200);
  padding-bottom: 1rem;
}

.blush-wiki-header .blush-wiki-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 50%;
  margin-bottom: 0.75rem;
  color: var(--brand-400);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.blush-wiki-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 0 0.25rem 0;
  color: #292524;
}

.blush-wiki-date {
  color: var(--brand-500);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blush-wiki-content {
  min-height: 60px;
}

.blush-wiki-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.blush-wiki-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.blush-wiki-item:last-child {
  margin-bottom: 0;
}

.blush-wiki-year {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--brand-500);
  background: white;
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  font-size: 0.875rem;
}

.blush-wiki-text {
  color: #57534e;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .blush-wiki-text { font-size: 1rem; }
}

.blush-wiki-empty,
.blush-wiki-error {
  color: #78716c;
  font-size: 0.9375rem;
  margin: 0;
}

.blush-wiki-deco {
  position: absolute;
  right: -2.5rem;
  bottom: -2.5rem;
  color: var(--brand-200);
  opacity: 0.5;
  transform: rotate(-15deg);
  pointer-events: none;
}

.blush-wiki-deco .ph-flower {
  font-size: 12.5rem;
}

.blush-wiki-loading {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.blush-wiki-loading span {
  height: 0.75rem;
  background: var(--brand-200);
  border-radius: 9999px;
  animation: blush-pulse 1.5s ease-in-out infinite;
}

.blush-wiki-loading span:nth-child(1) { width: 75%; }
.blush-wiki-loading span:nth-child(2) { width: 100%; }
.blush-wiki-loading span:nth-child(3) { width: 85%; }

.blush-card-hover {
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}
.blush-card-hover:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -15px rgba(251, 113, 133, 0.2);
}

@keyframes blush-spin {
  to { transform: rotate(360deg); }
}
@keyframes blush-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@media (min-width: 768px) {
  .blush-hero-grid { grid-template-columns: repeat(12, 1fr); }
  .blush-hero-main { grid-column: span 5; }
  .blush-hero-list { grid-column: span 4; }
  .blush-hero-aside { grid-column: span 3; }
}

.blush-archive-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blush-archive-grid { grid-template-columns: repeat(2, 1fr); }
}

.blush-single-thumb { height: 300px; }
@media (min-width: 768px) {
  .blush-single-thumb { height: 500px; }
}

.blush-fav-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .blush-fav-grid { grid-template-columns: repeat(3, 1fr); }
}

.blush-card-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .blush-card-grid-2 { grid-template-columns: repeat(2, 1fr); }
}

.blush-cat-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
}
@media (min-width: 768px) {
  .blush-cat-blocks { grid-template-columns: repeat(3, 1fr); }
}

/* Screen reader only */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* 404 page */
.blush-404 .blush-404-search { max-width: 320px; }
.blush-404 .blush-search-form { width: 100%; }
.blush-btn { font-family: var(--font-sans); cursor: pointer; }
.blush-btn-primary:hover { background: var(--brand-500); }

/* Search form (global) */
.blush-search-form .blush-search-field:focus { border-color: var(--brand-400); box-shadow: 0 0 0 2px rgba(251, 113, 133, 0.2); }

/* Pagination */
.navigation.pagination { margin-top: 2rem; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.5rem; }
.nav-links .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 2.5rem; height: 2.5rem; padding: 0 0.5rem;
  border-radius: 50%; font-weight: 700; font-size: 0.875rem;
  color: #57534e; text-decoration: none; background: transparent;
  transition: background 0.2s, color 0.2s;
}
.nav-links .page-numbers:hover { background: var(--brand-50); color: var(--brand-500); }
.nav-links .page-numbers.current { background: var(--brand-400); color: white; }
.nav-links .page-numbers.dots { cursor: default; }
.nav-links .page-numbers.prev,
.nav-links .page-numbers.next { border-radius: 50%; }

/* Single/Archive with sidebar – asztali nézetben tartalom mellett */
.blush-single-layout,
.blush-archive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .blush-single-layout,
  .blush-archive-layout {
    grid-template-columns: 1fr 320px;
    align-items: start;
  }
  .blush-single-layout .blush-sidebar-wrapper,
  .blush-archive-layout .blush-sidebar-wrapper {
    position: sticky;
    top: 6rem;
  }
}

.blush-sidebar-wrapper { display: block; }

/* Comments */
.blush-comment-list > li { margin-bottom: 0; }
.blush-comment-list .blush-comment-inner { margin-bottom: 1rem; }
.comment-form label { display: block; font-weight: 600; color: #292524; margin-bottom: 0.25rem; font-size: 0.875rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%; max-width: 100%; padding: 0.75rem 1rem;
  border: 1px solid var(--brand-100); border-radius: 1rem;
  font-family: inherit; font-size: 1rem; color: #292524;
  background: white; margin-bottom: 1rem;
}
.comment-form textarea { min-height: 120px; resize: vertical; }
.comment-form input:focus,
.comment-form textarea:focus { outline: none; border-color: var(--brand-400); box-shadow: 0 0 0 2px rgba(251, 113, 133, 0.15); }
.comment-form .form-submit { margin-top: 1rem; margin-bottom: 0; }
.comment-form .submit.blush-btn-primary {
  padding: 0.75rem 1.5rem; border: none; border-radius: 9999px;
  background: var(--brand-400); color: white; font-weight: 700; font-size: 0.875rem;
  cursor: pointer; transition: background 0.2s;
}
.comment-form .submit.blush-btn-primary:hover { background: var(--brand-500); }
.comment-reply-link { color: var(--brand-500); font-weight: 600; font-size: 0.875rem; text-decoration: none; }
.comment-reply-link:hover { text-decoration: underline; }

/* Page (static) */
.blush-page-content blockquote {
  border-left: 4px solid var(--brand-400);
  padding-left: 1.5rem;
  margin: 2rem 0;
  background: var(--brand-50);
  padding: 1rem 1.5rem 1rem;
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  color: #44403c;
}
.blush-page-links a { color: var(--brand-500); font-weight: 600; margin: 0 0.25rem; }
.blush-page-links a:hover { text-decoration: underline; }

/* Sidebar tag link hover */
.blush-sidebar-tags a:hover { color: var(--brand-500); box-shadow: 0 1px 3px rgba(251, 113, 133, 0.2); }

/* Sidebar Rovatok (kategóriák címkeszerűen) */
.blush-sidebar-cat-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--brand-50);
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #57534e;
  text-decoration: none;
  border: 1px solid var(--brand-100);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.blush-sidebar-cat-tag:hover {
  color: var(--brand-500);
  background: white;
  box-shadow: 0 1px 3px rgba(251, 113, 133, 0.2);
}
