/*
Theme Name: TravelAtal Blog
Theme URI: https://travelatal.com
Author: TravelAtal
Author URI: https://travelatal.com
Description: Official TravelAtal Blog Theme — magazine-style travel blog with multi-author support.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: travelatal
Tags: blog, travel, magazine, multi-author
*/

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:       #1A3A5C;
  --red:        #E8302A;
  --white:      #FFFFFF;
  --off-white:  #F7F8FA;
  --black:      #0A0A0A;
  --dark-bg:    #111111;
  --text:       #2C2C2C;
  --muted:      #6B7280;
  --border:     #E5E7EB;
  --card-shadow: 0 2px 16px rgba(0,0,0,0.08);
  --card-shadow-hover: 0 8px 40px rgba(0,0,0,0.15);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Source Serif 4', 'Georgia', serif;
  --font-ui:      'Montserrat', sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --nav-height: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

/* ============================================================
   GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Source+Serif+4:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1.5px solid #D0D9E8;
  height: var(--nav-height);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .travel-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.logo-text .brand-name {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  padding: 0 24px;
}

.primary-nav a {
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 400;
  color: var(--text);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.primary-nav a:hover {
  color: var(--navy);
  background: rgba(26,58,92,0.06);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--white) !important;
  background: var(--navy);
  padding: 9px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-login:hover {
  background: #14304e;
  transform: translateY(-1px);
}

.btn-signup {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 9px 16px;
  border-radius: 50px;
  transition: color var(--transition);
}

.btn-signup:hover { color: var(--navy); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 90px 32px 40px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.mobile-drawer.open { right: 0; }

.mobile-drawer nav a {
  display: block;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 500;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-drawer nav a:hover {
  color: var(--navy);
  padding-left: 8px;
}

.mobile-drawer-actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-drawer-actions .btn-login {
  text-align: center;
  display: block;
  padding: 13px 24px;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   HOMEPAGE — HERO FEATURED POST
   ============================================================ */
.blog-homepage { padding-bottom: 80px; }

.featured-hero {
  position: relative;
  height: 580px;
  overflow: hidden;
  margin-bottom: 72px;
}

.featured-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.05) 0%,
    rgba(10,10,10,0.2) 40%,
    rgba(10,10,10,0.78) 100%
  );
  z-index: 1;
}

.featured-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.featured-hero:hover img { transform: scale(1.03); }

.featured-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 48px 64px;
  max-width: 900px;
}

.featured-badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}

.featured-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.featured-hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.featured-hero-meta .author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.6);
}

.featured-hero-meta span {
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}

.featured-hero-meta .read-time::before {
  content: '·';
  margin-right: 20px;
  opacity: 0.6;
}

/* ============================================================
   HOMEPAGE — SECTION HEADER
   ============================================================ */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}

.section-header a {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.section-header a:hover { opacity: 1; }

/* ============================================================
   HOMEPAGE — POSTS GRID
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Card */
.post-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.post-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__thumb img { transform: scale(1.06); }

.post-card__cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 4px 10px;
  border-radius: 4px;
}

.post-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card__title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 10px;
  transition: color var(--transition);
}

.post-card:hover .post-card__title { color: var(--navy); }

.post-card__excerpt {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.post-card__footer .author-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.post-card__footer .author-name {
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text);
}

.post-card__footer .post-date {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  margin-left: auto;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
}

.pagination .page-numbers {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  color: var(--text);
  transition: all var(--transition);
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   SINGLE POST PAGE
   ============================================================ */
.single-post-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* Post Header */
.single-post-header { margin-bottom: 40px; }

.single-post-cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.single-post-cats a {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,48,42,0.08);
  padding: 5px 12px;
  border-radius: 4px;
  transition: background var(--transition);
}

.single-post-cats a:hover { background: rgba(232,48,42,0.16); }

.single-post-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 24px;
}

.single-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.single-post-meta .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.meta-author-info { display: flex; flex-direction: column; gap: 2px; }

.meta-author-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.meta-date-read {
  font-family: var(--font-ui);
  font-size: 12.5px;
  color: var(--muted);
}

/* Featured Image */
.single-post-thumb {
  margin: 36px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
}

.single-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Post Content */
.single-post-content {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.85;
  color: var(--text);
}

.single-post-content p { margin-bottom: 1.5em; }

.single-post-content h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin: 2em 0 0.75em;
  line-height: 1.25;
}

.single-post-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  margin: 1.75em 0 0.6em;
}

.single-post-content blockquote {
  border-left: 4px solid var(--navy);
  padding: 20px 28px;
  margin: 2em 0;
  background: var(--off-white);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  font-size: 20px;
  color: var(--navy);
}

.single-post-content ul,
.single-post-content ol {
  padding-left: 28px;
  margin-bottom: 1.5em;
}

.single-post-content ul { list-style: disc; }
.single-post-content ol { list-style: decimal; }
.single-post-content li { margin-bottom: 0.4em; }

.single-post-content a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single-post-content img {
  border-radius: var(--radius);
  margin: 2em auto;
}

/* Tags */
.post-tags {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.post-tags span {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.post-tags a {
  font-family: var(--font-ui);
  font-size: 13px;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 5px 12px;
  border-radius: 20px;
  transition: all var(--transition);
}

.post-tags a:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.author-box {
  margin-top: 56px;
  padding: 32px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.author-box__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.author-box__info h3 {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.author-box__info h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.author-box__info p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   COMMENTS
   ============================================================ */
.comments-section {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 2px solid var(--border);
}

.comments-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 36px;
}

/* Comment list */
.comment-list { padding: 0; }
.comment-list .children { padding-left: 56px; margin-top: 16px; }

.comment {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.comment-avatar {
  flex-shrink: 0;
}

.comment-avatar img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-body {
  flex: 1;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.comment-author-name {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.comment-date {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--muted);
  margin-left: 10px;
}

.comment-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  margin-top: 10px;
}

.comment-text p { margin-bottom: 0.5em; }

.comment-reply-link {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
  opacity: 0.7;
  transition: opacity var(--transition);
}

.comment-reply-link:hover { opacity: 1; }

/* Comment Form */
.comment-respond {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}

.comment-reply-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 28px;
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.comment-form .comment-form-comment { grid-column: 1 / -1; }

.comment-form label {
  display: block;
  font-family: var(--font-ui);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26,58,92,0.1);
}

.comment-form textarea { min-height: 140px; }

.comment-form .form-submit { grid-column: 1 / -1; }

.comment-form .submit {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  border: none;
  padding: 13px 36px;
  border-radius: 50px;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.comment-form .submit:hover {
  background: #14304e;
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 72px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
}

/* Footer Brand */
.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-brand .footer-logo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-brand .footer-logo .brand-name {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.footer-brand .footer-logo .travel-label {
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: #ffffff;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-follow h4 {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: all var(--transition);
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer Columns */
.footer-col h3 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer-col ul li {
  margin-bottom: 14px;
}

.footer-col ul li a {
  font-family: var(--font-ui);
  font-size: 14px;
  color: #ffffff;
  transition: color var(--transition), padding-left var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--white);
  padding-left: 4px;
}

/* Footer Contact */
.footer-contact h3 {
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255,255,255,0.5);
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.contact-item p {
  font-family: var(--font-ui);
  font-size: 13.5px;
  color: #ffffff;
  line-height: 1.55;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  font-family: var(--font-ui);
  font-size: 13px;
  color: #ffffff;
  letter-spacing: 0.02em;
}

/* ============================================================
   NO POSTS / NO FEATURED FALLBACK
   ============================================================ */
.no-posts {
  text-align: center;
  padding: 80px 24px;
  font-family: var(--font-ui);
  color: var(--muted);
  font-size: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .primary-nav { display: none; }
  .hamburger { display: flex; }
  .nav-actions .btn-login,
  .nav-actions .btn-signup { display: none; }
}

@media (max-width: 680px) {
  .posts-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .featured-hero { height: 420px; }
  .featured-hero-content { padding: 32px 24px; }
  .single-post-wrap { padding: 40px 20px 60px; }
  .author-box { flex-direction: column; }
  .comment-form { grid-template-columns: 1fr; }
  .comment-form .comment-form-comment { grid-column: 1; }
  .comment-form .form-submit { grid-column: 1; }
  .comment-list .children { padding-left: 24px; }
}
