/*
Theme Name: Ulala Blog v2
Theme URI: https://ulala.com.pl
Author: Ulala.com.pl
Author URI: https://ulala.com.pl
Description: Motyw bloga dla producenta fototapet Ulala.com.pl — wersja 2. Kolorystyka turkusowa, ciepłe kremowe tła, elegancka typografia. Kompatybilny z WordPress 6.x. Zawiera stronę główną bloga, single post, stronę statyczną, sidebar, widgety i pełną responsywność.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ulala-blog-v2
Tags: blog, one-column, two-columns, right-sidebar, custom-header, custom-menu, featured-images, translation-ready
*/

/* ═══════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════ */
:root {
  --teal: #00a89d;
  --teal-dark: #008f86;
  --teal-light: #e6f7f6;
  --teal-glow: rgba(0,168,157,0.12);
  --dark: #2a2a2a;
  --charcoal: #3a3a3a;
  --text: #4a4a4a;
  --text-light: #888;
  --border: #e5e2dc;
  --cream: #f8f6f1;
  --warm-white: #fdfcf9;
  --white: #ffffff;
  --gold: #c9a96e;
  --sage: #7a9e7e;
  --dusty-rose: #c9a0a0;
  --slate: #5c6b7a;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 8px rgba(0,0,0,0.04);
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ═══════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { transition: color 0.3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
  clip: rect(1px,1px,1px,1px);
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* ═══════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════ */
.top-bar {
  background: var(--teal);
  color: white;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.top-bar a { color: white; text-decoration: none; opacity: 0.85; transition: opacity 0.3s; }
.top-bar a:hover { opacity: 1; }
.top-bar .sep { opacity: 0.3; }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header-main {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.site-logo img {
  max-height: 44px;
  width: auto;
}
.header-search {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 0 4px 0 18px;
  height: 38px;
  width: 260px;
  transition: border-color 0.3s var(--ease);
}
.header-search:focus-within { border-color: var(--teal); }
.header-search input {
  flex: 1; border: none; outline: none;
  font-family: 'Outfit', sans-serif; font-size: 0.84rem;
  color: var(--text); background: transparent;
}
.header-search input::placeholder { color: #bbb; }
.header-search button {
  width: 30px; height: 30px; border-radius: 50%; border: none;
  background: var(--teal); color: white; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s; flex-shrink: 0;
}
.header-search button:hover { background: var(--teal-dark); }
.header-right {
  display: flex; align-items: center; gap: 20px;
  font-size: 0.82rem; color: var(--text-light);
}
.header-right a {
  text-decoration: none; color: var(--text-light);
  transition: color 0.3s; display: flex; align-items: center; gap: 6px;
}
.header-right a:hover { color: var(--teal); }

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.sub-nav { background: var(--white); border-bottom: 1px solid var(--border); }
.sub-nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; height: 46px; gap: 4px;
}
.sub-nav .menu {
  display: flex; list-style: none; gap: 4px; align-items: center;
}
.sub-nav .menu li a {
  text-decoration: none; font-size: 0.82rem; font-weight: 500;
  color: var(--text); padding: 8px 16px; border-radius: 100px;
  transition: all 0.3s var(--ease); letter-spacing: 0.01em; display: block;
}
.sub-nav .menu li a:hover { background: var(--teal-light); color: var(--teal); }
.sub-nav .menu li.current-menu-item a,
.sub-nav .menu li.current_page_item a {
  background: var(--teal); color: white;
}
.sub-nav .spacer { flex: 1; }
.sub-nav .shop-link {
  font-weight: 600; color: var(--teal); text-decoration: none;
  font-size: 0.82rem; padding: 8px 16px; border-radius: 100px;
  transition: all 0.3s var(--ease);
}
.sub-nav .shop-link:hover { background: var(--teal); color: white; }

/* ═══════════════════════════════════════
   BLOG HERO
   ═══════════════════════════════════════ */
.blog-hero {
  background: var(--cream);
  padding: 64px 32px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, var(--teal-glow) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 30%, rgba(201,169,110,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-deco {
  position: absolute; font-size: 6rem; opacity: 0.06;
  pointer-events: none; user-select: none;
}
.hero-deco.left { top: 10px; left: -10px; transform: rotate(-20deg); }
.hero-deco.right { bottom: -10px; right: 20px; transform: rotate(15deg) scaleX(-1); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--teal);
  margin-bottom: 18px; position: relative;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 28px; height: 1.5px; background: var(--teal); opacity: 0.35;
}
.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem;
  font-weight: 500; letter-spacing: -0.01em; color: var(--dark);
  margin-bottom: 14px; line-height: 1.2; position: relative;
}
.blog-hero h1 span { font-style: italic; color: var(--teal); }
.blog-hero > p {
  color: var(--text-light); font-size: 1rem;
  max-width: 480px; margin: 0 auto; line-height: 1.8;
}

/* ═══════════════════════════════════════
   CATEGORY FILTERS
   ═══════════════════════════════════════ */
.filter-bar {
  max-width: 1240px; margin: 0 auto; padding: 32px 32px 0;
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.filter-pill {
  padding: 7px 18px; border-radius: 100px;
  border: 1.5px solid var(--border); background: var(--white);
  font-size: 0.8rem; font-weight: 500; color: var(--text);
  cursor: pointer; transition: all 0.3s var(--ease);
  text-decoration: none; font-family: 'Outfit', sans-serif;
}
.filter-pill:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }
.filter-pill.active,
.filter-pill.current-cat {
  background: var(--teal); border-color: var(--teal); color: white; font-weight: 600;
}

/* ═══════════════════════════════════════
   BLOG LAYOUT
   ═══════════════════════════════════════ */
.blog-wrap {
  max-width: 1240px; margin: 0 auto; padding: 44px 32px 80px;
  display: grid; grid-template-columns: 1fr 320px; gap: 52px; align-items: start;
}
.blog-wrap.full-width { grid-template-columns: 1fr; max-width: 860px; }

/* ═══════════════════════════════════════
   FEATURED POST
   ═══════════════════════════════════════ */
.featured {
  display: grid; grid-template-columns: 1.15fr 1fr;
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); margin-bottom: 44px;
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease); cursor: pointer;
}
.featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.featured-visual {
  position: relative; min-height: 420px;
  background: linear-gradient(160deg, #d6d0c4 0%, #c5bfb1 100%); overflow: hidden;
}
.featured-visual img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.featured-visual::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.04) 30px, rgba(255,255,255,0.04) 31px);
  pointer-events: none;
}
.fv-badge {
  position: absolute; top: 20px; left: 20px;
  background: var(--teal); color: white;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 100px; z-index: 2;
}
.featured-content {
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.featured-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem;
  font-weight: 600; line-height: 1.32; margin-bottom: 14px; color: var(--dark);
}
.featured-content h2 a { color: inherit; text-decoration: none; }
.featured-content h2 a:hover { color: var(--teal); }
.featured-content .excerpt {
  color: var(--text-light); font-size: 0.9rem; line-height: 1.75; margin-bottom: 24px;
}

/* ═══════════════════════════════════════
   TAG LABELS
   ═══════════════════════════════════════ */
.tag-label {
  display: inline-block; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 100px; width: fit-content; margin-bottom: 16px;
  text-decoration: none;
}
.tag-teal { background: var(--teal-light); color: var(--teal); }
.tag-sage { background: #eaf2eb; color: var(--sage); }
.tag-gold { background: #f5f0e4; color: var(--gold); }
.tag-rose { background: #f5ebeb; color: var(--dusty-rose); }
.tag-slate { background: #ebeef1; color: var(--slate); }

/* ═══════════════════════════════════════
   META ROW
   ═══════════════════════════════════════ */
.meta-row {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.78rem; color: var(--text-light); margin-bottom: 20px;
}
.meta-row .author { font-weight: 600; color: var(--dark); }
.meta-row .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }
.read-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-weight: 600; font-size: 0.84rem;
  text-decoration: none; transition: gap 0.3s var(--ease);
}
.read-link:hover { gap: 14px; }

/* ═══════════════════════════════════════
   POST CARDS
   ═══════════════════════════════════════ */
.cards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.card-thumb {
  width: 100%; height: 200px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #e1ddd4, #d1cbc0);
}
.card-thumb img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
  transition: transform 0.5s var(--ease);
}
.card:hover .card-thumb img { transform: scale(1.04); }
.card-inner { padding: 22px 24px 24px; }
.card-inner .tag-label { margin-bottom: 10px; }
.card-inner h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.12rem;
  font-weight: 600; line-height: 1.38; margin-bottom: 8px;
  color: var(--dark); transition: color 0.3s;
}
.card-inner h3 a { color: inherit; text-decoration: none; }
.card:hover .card-inner h3,
.card:hover .card-inner h3 a { color: var(--teal); }
.card-inner .excerpt {
  color: var(--text-light); font-size: 0.84rem; line-height: 1.7; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-inner .meta-row { font-size: 0.74rem; margin-bottom: 0; }

/* ═══════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════ */
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 44px; }
.pagination .nav-links { display: flex; gap: 6px; }
.pagination a, .pagination span {
  width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius); border: 1.5px solid var(--border);
  font-size: 0.84rem; font-weight: 500; color: var(--text);
  text-decoration: none; transition: all 0.3s var(--ease);
}
.pagination a:hover { border-color: var(--teal); color: var(--teal); }
.pagination .current {
  background: var(--teal); border-color: var(--teal); color: white; font-weight: 700;
}

/* ═══════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════ */
.cta-banner {
  background: var(--teal); border-radius: var(--radius-lg);
  padding: 48px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px; margin-top: 52px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.07);
}
.cta-banner h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem;
  font-weight: 600; color: white; line-height: 1.3;
}
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 6px; }
.cta-btn {
  flex-shrink: 0; background: white; color: var(--teal); border: none;
  padding: 14px 32px; border-radius: 100px; font-family: 'Outfit', sans-serif;
  font-weight: 700; font-size: 0.88rem; cursor: pointer;
  transition: all 0.3s var(--ease); text-decoration: none; letter-spacing: 0.02em;
}
.cta-btn:hover { background: var(--dark); color: white; transform: translateY(-2px); }

/* ═══════════════════════════════════════
   SIDEBAR
   ═══════════════════════════════════════ */
.sidebar { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 28px; }
.sb, .widget {
  background: var(--white); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.sb-title, .widget-title {
  font-family: 'Cormorant Garamond', serif; font-size: 1.12rem;
  font-weight: 700; margin-bottom: 18px; color: var(--dark);
  padding-bottom: 12px; border-bottom: 2px solid var(--teal);
}

/* Sidebar search */
.sb-search, .widget_search .search-form {
  display: flex; border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s;
}
.sb-search:focus-within, .widget_search .search-form:focus-within { border-color: var(--teal); }
.sb-search input, .widget_search .search-field {
  flex: 1; border: none; padding: 11px 14px;
  font-family: 'Outfit', sans-serif; font-size: 0.85rem;
  color: var(--text); outline: none; background: transparent;
}
.sb-search input::placeholder, .widget_search .search-field::placeholder { color: #c5c5c5; }
.sb-search button, .widget_search .search-submit {
  background: var(--teal); border: none; padding: 11px 14px;
  cursor: pointer; color: white; transition: background 0.3s;
}
.sb-search button:hover, .widget_search .search-submit:hover { background: var(--teal-dark); }

/* Sidebar popular/recent posts */
.pop-list { display: flex; flex-direction: column; gap: 16px; }
.pop-item {
  display: flex; gap: 14px; text-decoration: none; color: inherit; align-items: flex-start;
}
.pop-item:hover h4 { color: var(--teal); }
.pop-thumb {
  width: 60px; height: 60px; border-radius: var(--radius); flex-shrink: 0;
  overflow: hidden; background: linear-gradient(135deg, #e1ddd4, #d1cbc0);
}
.pop-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pop-text h4 {
  font-family: 'Cormorant Garamond', serif; font-size: 0.95rem;
  font-weight: 600; line-height: 1.35; color: var(--dark); transition: color 0.3s;
}
.pop-text .date { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; display: block; }

/* Sidebar newsletter */
.sb-nl {
  background: var(--teal) !important; color: white; text-align: center;
  position: relative; overflow: hidden;
}
.sb-nl::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px; border-radius: 50%; background: rgba(255,255,255,0.08);
}
.sb-nl::after {
  content: ''; position: absolute; bottom: -30px; left: -20px;
  width: 80px; height: 80px; border-radius: 50%; background: rgba(255,255,255,0.05);
}
.sb-nl .sb-title, .sb-nl .widget-title {
  color: white; border-bottom-color: rgba(255,255,255,0.2); position: relative;
}
.sb-nl p {
  font-size: 0.84rem; color: rgba(255,255,255,0.75);
  margin-bottom: 16px; line-height: 1.7; position: relative;
}
.sb-nl input[type="email"] {
  width: 100%; border: 1.5px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1); border-radius: var(--radius);
  padding: 11px 14px; color: white; font-family: 'Outfit', sans-serif;
  font-size: 0.85rem; margin-bottom: 10px; outline: none; transition: border-color 0.3s;
}
.sb-nl input[type="email"]::placeholder { color: rgba(255,255,255,0.4); }
.sb-nl input[type="email"]:focus { border-color: rgba(255,255,255,0.6); }
.nl-btn {
  width: 100%; background: var(--dark); color: white; border: none;
  padding: 11px; border-radius: var(--radius); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 0.84rem; cursor: pointer; transition: background 0.3s;
}
.nl-btn:hover { background: var(--charcoal); }

/* Sidebar tags */
.tags, .tagcloud { display: flex; flex-wrap: wrap; gap: 7px; }
.tags a, .tagcloud a {
  padding: 5px 13px; border-radius: 100px; border: 1px solid var(--border);
  font-size: 0.76rem !important; color: var(--text-light); text-decoration: none; transition: all 0.3s;
}
.tags a:hover, .tagcloud a:hover {
  border-color: var(--teal); color: var(--teal); background: var(--teal-light);
}

/* Sidebar widget lists */
.widget ul { list-style: none; }
.widget ul li { margin-bottom: 8px; }
.widget ul li a {
  color: var(--text); text-decoration: none; font-size: 0.88rem; transition: color 0.3s;
}
.widget ul li a:hover { color: var(--teal); }

/* ═══════════════════════════════════════
   SINGLE POST
   ═══════════════════════════════════════ */
.single-hero {
  background: var(--cream); padding: 48px 32px 40px; text-align: center;
  position: relative; overflow: hidden;
}
.single-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, var(--teal-glow) 0%, transparent 50%);
  pointer-events: none;
}
.single-hero .tag-label { margin-bottom: 14px; }
.single-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.6rem;
  font-weight: 600; line-height: 1.2; color: var(--dark);
  margin-bottom: 16px; max-width: 760px; margin-left: auto; margin-right: auto;
}
.single-hero .meta-row { justify-content: center; margin-bottom: 0; }

.single-featured-img {
  max-width: 960px; margin: -20px auto 0; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); position: relative; z-index: 2;
}
.single-featured-img img { width: 100%; display: block; }

.single-content {
  max-width: 740px; margin: 48px auto; padding: 0 32px;
}
.single-content h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 600; color: var(--dark); margin: 40px 0 16px;
}
.single-content h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem;
  font-weight: 600; color: var(--dark); margin: 32px 0 12px;
}
.single-content p { margin-bottom: 20px; font-size: 1.02rem; line-height: 1.85; }
.single-content img {
  border-radius: var(--radius); margin: 28px 0; box-shadow: var(--shadow-sm);
}
.single-content blockquote {
  border-left: 3px solid var(--teal); padding: 16px 24px; margin: 28px 0;
  background: var(--teal-light); border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: var(--charcoal);
}
.single-content ul, .single-content ol {
  margin: 16px 0 20px 24px;
}
.single-content li { margin-bottom: 8px; }
.single-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 2px; }
.single-content a:hover { color: var(--teal-dark); }

/* Post tags at bottom */
.post-tags { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.post-tags span { font-weight: 600; color: var(--dark); font-size: 0.85rem; margin-right: 10px; }
.post-tags a {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  border: 1px solid var(--border); font-size: 0.76rem; color: var(--text-light);
  text-decoration: none; margin: 4px 4px 4px 0; transition: all 0.3s;
}
.post-tags a:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-light); }

/* Post navigation */
.post-nav {
  max-width: 740px; margin: 0 auto 60px; padding: 0 32px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.post-nav a {
  display: block; padding: 20px; border-radius: var(--radius);
  border: 1px solid var(--border); text-decoration: none; transition: all 0.3s var(--ease);
}
.post-nav a:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); }
.post-nav .label {
  font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--teal); margin-bottom: 6px; display: block;
}
.post-nav .title {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem;
  font-weight: 600; color: var(--dark); line-height: 1.35;
}

/* Comments */
.comments-area {
  max-width: 740px; margin: 0 auto 60px; padding: 0 32px;
}
.comments-area h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.5rem;
  font-weight: 600; margin-bottom: 28px; color: var(--dark);
}
.comment-list { list-style: none; }
.comment-list .comment {
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.comment-author { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.comment-meta { font-size: 0.76rem; color: var(--text-light); margin-bottom: 8px; }
.comment-content p { font-size: 0.92rem; }
.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 12px 16px; font-family: 'Outfit', sans-serif; font-size: 0.9rem;
  color: var(--text); margin-bottom: 14px; outline: none; transition: border-color 0.3s;
}
.comment-respond input:focus, .comment-respond textarea:focus { border-color: var(--teal); }
.comment-respond .submit {
  background: var(--teal); color: white; border: none; padding: 12px 28px;
  border-radius: 100px; font-family: 'Outfit', sans-serif; font-weight: 600;
  font-size: 0.88rem; cursor: pointer; transition: background 0.3s;
}
.comment-respond .submit:hover { background: var(--teal-dark); }

/* ═══════════════════════════════════════
   PAGE TEMPLATE
   ═══════════════════════════════════════ */
.page-hero {
  background: var(--cream); padding: 48px 32px 40px; text-align: center;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem;
  font-weight: 500; color: var(--dark);
}
.page-content {
  max-width: 800px; margin: 48px auto; padding: 0 32px;
}
.page-content p { margin-bottom: 20px; font-size: 1.02rem; line-height: 1.85; }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.5); }
.footer-cta-strip {
  background: var(--teal); padding: 14px 32px; text-align: center;
  font-size: 0.82rem; font-weight: 500; color: white;
}
.footer-cta-strip a { color: white; text-decoration: underline; text-underline-offset: 2px; }
.footer-grid {
  max-width: 1240px; margin: 0 auto; padding: 52px 32px 36px;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand p { font-size: 0.84rem; line-height: 1.8; margin: 14px 0 20px; }
.site-footer .site-logo { color: white; font-size: 1.6rem; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); display: flex;
  align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.8rem; transition: all 0.3s;
}
.socials a:hover { border-color: var(--teal); color: var(--teal); }
.fcol h5 {
  color: white; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 18px;
}
.fcol ul { list-style: none; }
.fcol li { margin-bottom: 9px; }
.fcol a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.84rem; transition: color 0.3s; }
.fcol a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto; padding: 20px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; justify-content: space-between; font-size: 0.76rem;
}
.footer-bottom a { color: rgba(255,255,255,0.35); text-decoration: none; }

/* Footer widget areas */
.site-footer .widget-title {
  color: white; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border-bottom: none; padding-bottom: 0; margin-bottom: 18px;
  font-family: 'Outfit', sans-serif;
}
.site-footer .widget ul li a { color: rgba(255,255,255,0.5); font-size: 0.84rem; }
.site-footer .widget ul li a:hover { color: var(--teal); }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.blog-hero > *, .single-hero > * { animation: fadeUp 0.7s ease-out both; }
.hero-eyebrow { animation-delay: 0.05s; }
.blog-hero h1, .single-hero h1 { animation-delay: 0.15s; }
.blog-hero > p { animation-delay: 0.25s; }
.featured { animation: fadeUp 0.7s ease-out 0.3s both; }
.card:nth-child(1) { animation: fadeUp 0.5s ease-out 0.35s both; }
.card:nth-child(2) { animation: fadeUp 0.5s ease-out 0.45s both; }
.card:nth-child(3) { animation: fadeUp 0.5s ease-out 0.55s both; }
.card:nth-child(4) { animation: fadeUp 0.5s ease-out 0.65s both; }
.card:nth-child(5) { animation: fadeUp 0.5s ease-out 0.75s both; }
.card:nth-child(6) { animation: fadeUp 0.5s ease-out 0.85s both; }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1060px) {
  .blog-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .header-search { display: none; }
  .header-right { gap: 12px; font-size: 0.76rem; }
  .blog-hero h1, .single-hero h1 { font-size: 2rem; }
  .featured { grid-template-columns: 1fr; }
  .featured-visual { min-height: 240px !important; }
  .featured-content { padding: 28px 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .sidebar { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 36px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .sub-nav-inner { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .post-nav { grid-template-columns: 1fr; }
  .single-content, .comments-area, .post-nav { padding: 0 20px; }
}
