:root {
  --container-width: 1200px;
  --content-width: 760px;
  --sidebar-width: 340px;

  /* Superfast Clean Minimal Color Palette */
  --primary-color: #333333;
  --primary-dark: #222222;
  --secondary-color: #666666;
  --accent-color: #e74c3c;
  
  --text-color: #333333;
  --text-light: #666666;
  --text-lighter: #999999;
  
  --bg-color: #ffffff;
  --bg-light: #f7f7f7;
  --bg-lighter: #f0f0f0;
  
  --border-color: #e0e0e0;
  --border-light: #f0f0f0;
  
  /* Subtle Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 8px 20px rgba(0, 0, 0, 0.15);

  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", sans-serif;
  --font-heading: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 0px;
  --radius-lg: 0px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-color);
  background: var(--bg-color);
  line-height: 1.7;
  font-size: 16.32px;
}

/* TYPOGRAPHY */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: var(--text-color);
}

h1 {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

h4 {
  font-size: 1.25rem;
  font-weight: 700;
}

h5, h6 {
  font-size: 1.1rem;
  font-weight: 700;
}

p {
  margin-bottom: 0.5em;
  line-height: 1.5;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all var(--transition);
  font-weight: 500;
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* CONTAINER & LAYOUT */

.container {
  max-width: var(--container-width);
  padding: 0 20px;
  margin: 0 auto;
}

/* Superfast Classes Mapping */
.sf-container {
  max-width: var(--container-width);
  padding: 0 20px;
  margin: 0 auto;
}

.sf-layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 2.5rem;
  margin-top: 2rem;
}

.sf-layout.full-width {
  grid-template-columns: 1fr;
}

.sf-content {
  min-width: 0;
}

.sf-main {
  background: var(--bg-color);
}

/* Archive Header Styles */
.sf-archive-header {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 0;
  padding: 2.5rem;
  margin-bottom: 3rem;
}

.sf-archive-header h1 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
}

.sf-archive-description {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

.sf-archive-description p {
  margin-bottom: 0;
}

.sf-post-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
  align-items: stretch;
}

.sf-post-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.sf-post-thumb {
  position: relative;
  overflow: hidden;
  width: 45%;
  min-width: 45%;
  height: auto;
  min-height: 140px;
  background: var(--bg-lighter);
  flex-shrink: 0;
}

.sf-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.sf-post-card:hover .sf-post-thumb img {
  transform: scale(1.05);
}

.sf-post-body {
  position: relative;
  padding: 1.25rem;
  width: 55%;
  display: flex;
  flex-direction: column;
}

.sf-post-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  line-height: 1.3;
}

.sf-post-title a {
  color: var(--text-color);
  text-decoration: none;
}

.sf-post-title a:hover {
  color: var(--accent-color);
}

.sf-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-lighter);
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.sf-post-excerpt {
  color: var(--text-light);
  font-size: 0.918rem;
  line-height: 1.5;
  flex: 1;
  margin-bottom: -0.4rem;
}

.sf-read-more {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  margin-top: auto;
  transition: all var(--transition);
  padding: 0.5rem 0.55rem;
  border: 2px solid transparent;
  border-radius: 6px;
}

.sf-read-more:hover {
  color: #fff;
  background: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(231, 76, 60, 0.2);
}

.layout-wrapper {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 2.5rem;
  margin-top: 2rem;
}

.layout-wrapper.full-width {
  grid-template-columns: 1fr;
}

.main-content {
  min-width: 0;
}

.sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsive Layout */
@media (max-width: 1024px) {
  .layout-wrapper,
  .sf-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sidebar {
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
  }
}

@media (max-width: 768px) {
  .container,
  .sf-container {
    padding: 0 15px;
  }
  
  .layout-wrapper,
  .sf-layout {
    gap: 1.5rem;
  }
  
  .sf-post-card {
    margin-bottom: 1.5rem;
    flex-direction: row;
  }
  
  .sf-post-thumb {
    width: 45%;
    min-width: 45%;
    height: auto;
    min-height: 120px;
  }
  
  .sf-post-body {
    padding: 1rem;
    width: 55%;
  }
  
  .sf-post-title {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
  }
  
  .sf-post-excerpt {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .container,
  .sf-container {
    padding: 0 12px;
  }
  
  .layout-wrapper,
  .sf-layout {
    gap: 1rem;
  }
  
  .sf-post-card {
    flex-direction: column;
  }
  
  .sf-post-title {
    font-size: 1.4rem;
  }
  
  .sf-post-thumb {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }
  
  .sf-post-body {
    padding: 1.25rem;
    width: 100%;
  }
}

/* ============================================================
   HEADER & NAVIGATION - Superfast Clean Design
   ============================================================ */

.site-header {
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  box-shadow: none;
  position: relative;
  z-index: 100;
}

.site-header.is-sticky-header {
  position: sticky;
  top: 0;
  box-shadow: var(--shadow-md);
  background: var(--bg-color);
}

.site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  gap: 2rem;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-logo img {
  max-height: 50px;
  width: auto;
  display: block;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0;
  color: var(--text-color);
}

.site-description {
  display: none;
}

/* Navigation Menu */
.main-menu {
  display: flex;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}

.main-menu a {
  padding: 0.75rem 1.25rem;
  transition: all var(--transition);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-color);
  border-bottom: 2px solid transparent;
  text-decoration: none;
}

.main-menu a:hover {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);
}

/* ============================================================
   FEATURED SLIDER - Superfast Hero Design
   ============================================================ */

.featured-slider {
  margin: 2rem 0 3rem;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.featured-slider .slide {
  position: relative;
  overflow: hidden;
  min-width: 100%;
  flex-shrink: 0;
}

.featured-slider img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.featured-slider .slide:hover img {
  transform: scale(1.03);
}

.featured-slider .slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

.featured-slider h2,
.featured-slider .slide-title {
  color: #fff;
  font-size: 2rem;
  margin: 0 0 0.5rem;
  line-height: 1.3;
  font-weight: 700;
}

.featured-slider .slide-title a {
  color: #fff;
  text-decoration: none;
  transition: all var(--transition);
}

.featured-slider .slide-title a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.featured-slider .slide-meta {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
}

/* Slider Navigation Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.slider-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

@media (max-width: 768px) {
  .featured-slider {
    margin: 1.5rem 0 2rem;
  }
  
  .featured-slider .slide-content {
    padding: 1.5rem;
  }
  
  .featured-slider h2,
  .featured-slider .slide-title {
    font-size: 1.5rem;
  }
  
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }
}

@media (max-width: 480px) {
  .featured-slider .slide-content {
    padding: 1rem;
  }
  
  .featured-slider h2,
  .featured-slider .slide-title {
    font-size: 1.2rem;
  }
  
  .slider-btn {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  
  .slider-btn.prev {
    left: 5px;
  }

  .slider-btn.next {
    right: 5px;
  }
}

/* ============================================================
   BLOG GRID & POST CARDS - Superfast Clean Large Design
   ============================================================ */

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 3rem 0;
}

.post-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-lg);
}

.post-card-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
  background: var(--bg-lighter);
}

.post-card-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--transition);
}

.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-card-category {
  position: absolute;
  top: 15px;
  left: 15px;
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.post-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.post-card-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.3;
  color: var(--text-color);
}

.post-card-title a {
  color: var(--text-color);
  text-decoration: none;
}

.post-card-title a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

.post-card-excerpt {
  color: var(--text-light);
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 0.5rem;
  flex: 1;
}

.post-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--text-lighter);
}

.post-card-meta {
  display: flex;
  gap: 1rem;
}

.read-more {
  color: var(--accent-color);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  align-content: center;
  transition: gap var(--transition);
}

.read-more:hover {
  gap: 0.75rem;
  text-decoration: none;
}

/* ============================================================
   SINGLE POST - Modern Article Design
   ============================================================ */

.single-post {
  background: var(--bg-color);
}

.post-header {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.post-category-badge {
  display: inline-block;
  background: var(--accent-color);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.post-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
  line-height: 1.3;
  letter-spacing: 0;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--text-lighter);
  align-items: center;
}

.post-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.post-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.post-featured-image {
  margin: 2rem 0;
  overflow: hidden;
  box-shadow: none;
}

.post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-content {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--text-color);
}

.entry-content p {
  margin-bottom: 1.8em;
}

.entry-content h2,
.entry-content h3 {
  margin: 2.5em 0 1em;
  font-family: var(--font-heading);
  font-weight: 700;
}

.entry-content h2 {
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-light);
}

.entry-content h3 {
  font-size: 1.4rem;
}

.entry-content a {
  color: var(--accent-color);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}

.entry-content a:hover {
  border-bottom-color: var(--accent-color);
}

.entry-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
  display: block;
  box-shadow: none;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  padding-left: 2rem;
  border-left: 4px solid var(--accent-color);
  background: var(--bg-light);
  font-style: italic;
  color: var(--text-light);
}

.entry-content code,
.entry-content pre {
  background: var(--bg-light);
  font-family: "Monaco", "Courier New", monospace;
}

.entry-content code {
  padding: 0.2rem 0.4rem;
  font-size: 0.9rem;
}

.entry-content pre {
  padding: 1.5rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}

/* ============================================================
   LAYOUT - Main Content with Sidebar
   ============================================================ */

.site-content {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-width);
  gap: 2.5rem;
  margin-top: 2rem;
}

.main-content {
  min-width: 0;
}

.sidebar {
  position: sticky !important;
  top: 100px !important;
  height: fit-content !important;
  max-height: calc(100vh - 100px) !important;
  overflow-y: auto !important;
  z-index: 50 !important;
  align-self: flex-start;
}

/* Homepage sidebar sticky */
.sf-layout .sidebar {
  position: sticky !important;
  top: 100px !important;
  height: fit-content !important;
  max-height: calc(100vh - 100px) !important;
  overflow-y: auto !important;
  z-index: 50 !important;
  align-self: flex-start;
}

/* ============================================================
   SIDEBAR WIDGETS - Superfast Sidebar Design
   ============================================================ */

.widget {
  background: var(--bg-color);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: none;
  transition: all var(--transition);
  position: sticky;
}

.widget:hover {
  border-color: var(--accent-color);
  box-shadow: none;
}

.widget-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  padding: 0.75rem;
  background: var(--accent-color);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.widget ul li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.widget ul li .post-thumbnail,
.widget ul li img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin-bottom: 0.25rem;
}

.widget ul a {
  color: var(--text-color);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition);
  text-decoration: none;
}

/* ============================================================
   RECENT POSTS WIDGET - Featured Images with Excerpts
   ============================================================ */

.recent-posts-list,
.category-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-post-item,
.category-post-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.recent-post-item:last-child,
.category-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-image,
.category-post-image {
  width: 100%;
  height: 150px;
  overflow: hidden;
  border-radius: 4px;
}

.recent-post-img,
.category-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
  display: block;
}

.recent-post-item:hover .recent-post-img,
.category-post-item:hover .category-post-img {
  transform: scale(1.05);
}

.recent-post-content,
.category-post-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recent-post-title,
.category-post-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.recent-post-title a,
.category-post-title a {
  color: var(--text-color);
  text-decoration: none;
  transition: color var(--transition);
}

.recent-post-title a:hover,
.category-post-title a:hover {
  color: var(--accent-color);
}

.recent-post-excerpt,
.category-post-excerpt {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.read-more-link {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  margin-top: 0.25rem;
}

.read-more-link:hover {
  color: #fff !important;
  background: var(--accent-color);
  padding: 0.25rem 0.5rem;
  border-radius: 3px;
}

.widget ul a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

/* ============================================================
   SOCIAL PROFILES WIDGET - Social Media Links Display
   ============================================================ */

.social-profiles-widget {
  margin: 0;
}

.social-profiles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-start;
  align-items: center;
}

.social-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-lighter);
  color: var(--text-color);
  text-decoration: none;
  transition: all var(--transition);
  border: 1px solid var(--border-color);
}

.social-profile-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-profile-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Platform-specific colors */
.social-profile-link.facebook {
  color: #1877f2;
  border-color: #1877f2;
}

.social-profile-link.facebook:hover {
  background: #1877f2;
  color: white;
}

.social-profile-link.twitter {
  color: #000;
  border-color: #000;
}

.social-profile-link.twitter:hover {
  background: #000;
  color: white;
}

.social-profile-link.instagram {
  color: #e4405f;
  border-color: #e4405f;
}

.social-profile-link.instagram:hover {
  background: #e4405f;
  color: white;
}

.social-profile-link.linkedin {
  color: #0a66c2;
  border-color: #0a66c2;
}

.social-profile-link.linkedin:hover {
  background: #0a66c2;
  color: white;
}

.social-profile-link.youtube {
  color: #ff0000;
  border-color: #ff0000;
}

.social-profile-link.youtube:hover {
  background: #ff0000;
  color: white;
}

.social-profile-link.pinterest {
  color: #e60023;
  border-color: #e60023;
}

.social-profile-link.pinterest:hover {
  background: #e60023;
  color: white;
}

.social-profile-link.tiktok {
  color: #000;
  border-color: #000;
}

.social-profile-link.tiktok:hover {
  background: #000;
  color: white;
}

.social-profile-link.whatsapp {
  color: #25d366;
  border-color: #25d366;
}

.social-profile-link.whatsapp:hover {
  background: #25d366;
  color: white;
}

/* ============================================================
   AUTHOR BOX - Superfast Author Display
   ============================================================ */

.author-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  margin: 3rem 0;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 0;
  box-shadow: none;
}

.author-box-avatar {
  flex-shrink: 0;
}

.author-box-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  object-fit: cover;
}

.author-box-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.author-box-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text-color);
}

.author-box-bio {
  margin: 0 0 1rem;
  color: var(--text-light);
  line-height: 1.6;
}

.author-box-social {
  display: flex;
  gap: 0.75rem;
}

.author-box-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  transition: all var(--transition);
  font-size: 0.9rem;
}

.author-box-social a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  text-decoration: none;
}

/* ============================================================
   RELATED POSTS - Modern Related Section
   ============================================================ */

.related-posts {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 2px solid var(--border-light);
}

.related-posts-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--primary-color);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}

.related-posts-grid .post-card {
  margin: 0;
}

/* ============================================================
/* ============================================================
   PAGINATION - Modern Professional Navigation
   ============================================================ */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin: 4rem 0;
  flex-wrap: wrap;
}

.pagination .page-item {
  list-style: none;
}

.pagination a,
.pagination .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0.6rem 0.9rem;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  color: var(--text-color);
  font-weight: 600;
  transition: all var(--transition);
  font-size: 0.95rem;
  text-decoration: none;
  background: white;
}

.pagination a:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.2);
}

.pagination .page-item.active .page-link {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.pagination .page-link {
  color: var(--text-color);
}

/* Hide dots/ellipsis pagination */
.pagination .dots,
.pagination .page-numbers.dots {
  display: none;
}

/* Previous/Next buttons - styled as primary action */
.pagination a.prev,
.pagination a.next {
  font-weight: 700;
  padding: 0.6rem 1.2rem;
}

/* ============================================================
   COMMENTS SECTION - Superfast Comments
   ============================================================ */

.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.comments-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-color);
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.comment {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0;
  border-left: 3px solid var(--accent-color);
}

.comment-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-body {
  flex: 1;
}

.comment-author-name {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--text-color);
}

.comment-meta {
  font-size: 0.85rem;
  color: var(--text-lighter);
  margin-bottom: 0.75rem;
}

.comment-text {
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
}

.comment-reply-link {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: var(--accent-color);
  color: #fff;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}

.comment-reply-link:hover {
  background: var(--primary-dark);
  text-decoration: none;
}

.comment-children {
  list-style: none;
  padding: 0 0 0 2rem;
  margin: 1.5rem 0 0;
}

.comment-form {
  background: var(--bg-lighter);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.comment-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

/* ============================================================
   FORMS & INPUTS - Modern Form Design (AdSense Friendly)
   ============================================================ */

input[type="text"],
input[type="email"],
input[type="password"],
input[type="url"],
input[type="number"],
input[type="search"],
input[type="tel"],
textarea,
select {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-color);
  background: var(--bg-color);
  transition: all var(--transition);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="url"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

button,
input[type="submit"],
input[type="button"],
.btn {
  padding: 0.875rem 2rem;
  background: var(--accent-color);
  color: #fff;
  border: none;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  display: inline-block;
  text-decoration: none;
  box-shadow: none;
}

button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
.btn:hover {
  background: var(--primary-dark);
  box-shadow: none;
  text-decoration: none;
}

button:active,
input[type="submit"]:active,
input[type="button"]:active,
.btn:active {
  transform: none;
}

/* ============================================================
   BREADCRUMB - Superfast Navigation Aid
   ============================================================ */

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb a {
  color: var(--accent-color);
  font-weight: 600;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .separator {
  color: var(--text-lighter);
}

/* ============================================================
   FOOTER - Superfast Footer Design
   ============================================================ */

.site-footer {
  background: #333333;
  color: #fff;
  margin-top: 4rem;
  padding: 0;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.footer-widgets-wrapper {
  width: 100%;
  padding: 3rem 2rem;
  background: #333333;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}

.footer-widget-column {
  color: rgba(255,255,255,0.9);
  min-width: 0;
}

.footer-widget {
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.footer-widget-title,
.widget-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 0.5rem;
}

.footer-widget a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}

.footer-widget a:hover {
  color: var(--accent-color);
  padding-left: 0.5rem;
}

.footer-bottom {
  width: 100%;
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  background: #2a2a2a;
}

.footer-bottom-content {
  max-width: var(--container-width);
  margin: 0 auto;
}

.footer-credit {
  margin: 0;
  padding: 0;
}

.site-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
}

.site-footer-bottom a {
  color: var(--primary-color);
  font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-widgets {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
  
  .footer-widgets-wrapper {
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .footer-widgets {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
  
  .footer-widgets-wrapper {
    padding: 2rem 1rem;
  }
  
  .footer-widget-title,
  .widget-title {
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    padding: 1.5rem 1rem;
  }
}

@media (max-width: 480px) {
  .footer-widgets {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-widgets-wrapper {
    padding: 1.5rem 1rem;
  }
  
  .footer-widget-title,
  .widget-title {
    font-size: 0.9rem;
  }
}

/* ============================================================
   UTILITIES & HELPERS - General Purpose Classes
   ============================================================ */

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }

.hidden {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================================ */

/* Tablets (768px and above) */
@media (min-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}

/* Large Tablets / Small Desktops (1024px and above) */
@media (min-width: 1024px) {
  .site-header-inner {
    padding: 1.5rem 0;
  }
  
  .main-menu a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

/* Small Screens (480px and below) */
@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.1rem; }
  
  .site-title {
    font-size: 1.25rem;
  }
  
  .main-menu {
    gap: 0;
    flex-wrap: wrap;
  }
  
  .main-menu a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }
  
  .featured-slider h2 {
    font-size: 1.25rem;
  }
  
  .post-card-title {
    font-size: 1.4rem;
  }
  
  .post-card-image {
    height: 220px;
  }
  
  .post-title {
    font-size: 2rem;
  }
  
  .post-card-body {
    padding: 1.25rem;
  }
  
  .author-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .widget {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  button,
  input[type="submit"],
  input[type="button"],
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Medium Screens (480px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
  .post-card-image {
    height: 280px;
  }
  
  .post-card-body {
    padding: 1.75rem;
  }
  
  .post-title {
    font-size: 2.25rem;
  }
  
  .featured-slider h2 {
    font-size: 1.75rem;
  }
  
  .layout-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .sidebar {
    position: sticky !important;
    top: 100px !important;
    height: fit-content !important;
    max-height: calc(100vh - 100px) !important;
    overflow-y: auto !important;
  }
}

/* Large Screens (1024px to 1440px) */
@media (min-width: 1024px) and (max-width: 1440px) {
  .layout-wrapper {
    grid-template-columns: 1fr 300px;
    gap: 2.25rem;
  }
}

/* Extra Large Screens (1440px and above) */
@media (min-width: 1441px) {
  .layout-wrapper {
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 2.5rem;
  }
}

/* Landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .featured-slider {
    margin: 1rem 0 1.5rem;
  }
  
  .featured-slider .slide-content {
    padding: 1rem;
  }
  
  .featured-slider h2 {
    font-size: 1.5rem;
  }
}

/* Print styles */
@media print {
  .site-header,
  .site-footer,
  .sidebar,
  .pagination,
  .comments-area,
  .comment-form {
    display: none;
  }
  
  .layout-wrapper {
    grid-template-columns: 1fr;
  }
  
  a {
    text-decoration: underline;
  }
}

/* ============================================================================
   Social Share Styles - All Icon Sizing and Classes
   ============================================================================ */

.share-icon-label {
    width: 12px;
    height: 12px;
    color: var(--primary-color, #333);
    flex-shrink: 0;
}

.label-text {
    display: inline;
    font-weight: 500;
    color: var(--text-color, #333);
}

/* Social Platforms Container */
.social-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Individual Platform Buttons */
.social-platform {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    color: #495057;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.platform-icon {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

.platform-text {
    display: inline;
    color: inherit;
}

.social-platform:hover {
    transform: translateY(-2px);
    border-color: transparent;
}

/* Facebook */
.social-platform.facebook {
    color: #1877f2;
}

.social-platform.facebook:hover {
    background: #1877f2;
    color: #fff;
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.3);
}

/* Twitter */
.social-platform.twitter {
    color: #000;
}

.social-platform.twitter:hover {
    background: #000;
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* LinkedIn */
.social-platform.linkedin {
    color: #0a66c2;
}

.social-platform.linkedin:hover {
    background: #0a66c2;
    color: #fff;
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.3);
}

/* Pinterest */
.social-platform.pinterest {
    color: #e60023;
}

.social-platform.pinterest:hover {
    background: #e60023;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 0, 35, 0.3);
}

/* WhatsApp */
.social-platform.whatsapp {
    color: #25d366;
}

.social-platform.whatsapp:hover {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

/* Email */
.social-platform.email {
    color: #ea4335;
}

.social-platform.email:hover {
    background: #ea4335;
    color: #fff;
    box-shadow: 0 8px 20px rgba(234, 67, 53, 0.3);
}

/* Copy Link Button */
.social-platform.copy-link {
    color: var(--primary-color, #333);
}

.social-platform.copy-link:hover {
    background: var(--primary-color, #333);
    color: #fff;
    box-shadow: 0 8px 20px rgba(51, 51, 51, 0.3);
}

.social-platform.copy-link.copied {
    animation: pulse-copied 0.4s ease;
}

@keyframes pulse-copied {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* ============================================================================
   Back to Top Button
   ============================================================================ */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color, #e74c3c);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 24px;
    line-height: 1;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #c53030;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .back-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ============================================================================
   Sticky Sidebar - Single Post & Page
   ============================================================================ */

.single-post-wrapper,
.page-wrapper {
    display: grid;
    grid-template-columns: 1fr var(--sidebar-width);
    gap: 2.5rem;
    margin: 0 auto;
    padding: 40px 20px;
    max-width: 1200px;
    width: 100%;
    margin-top: 2rem;
}

.single-post-container,
.page-container {
    grid-column: 1;
    min-width: 0;
}

.sticky-sidebar {
    grid-column: 2;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.post-sidebar.sticky-sidebar,
.page-sidebar.sticky-sidebar {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
}

.post-sidebar.sticky-sidebar .widget,
.page-sidebar.sticky-sidebar .widget {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.post-sidebar.sticky-sidebar .widget:last-child,
.page-sidebar.sticky-sidebar .widget:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-sidebar.sticky-sidebar .widget-title,
.page-sidebar.sticky-sidebar .widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: var(--text-color, #333);
}

.post-sidebar.sticky-sidebar .widget ul,
.page-sidebar.sticky-sidebar .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.post-sidebar.sticky-sidebar .widget li,
.page-sidebar.sticky-sidebar .widget li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f5f5f5;
}

.post-sidebar.sticky-sidebar .widget li:last-child,
.page-sidebar.sticky-sidebar .widget li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.post-sidebar.sticky-sidebar .widget a,
.page-sidebar.sticky-sidebar .widget a {
    color: var(--primary-color, #333);
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-sidebar.sticky-sidebar .widget a:hover,
.page-sidebar.sticky-sidebar .widget a:hover {
    color: var(--accent-color, #e74c3c);
    text-decoration: underline;
}

/* Page and Article Styling */
.page-main {
    width: 100%;
}

article.page-post {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-post .entry-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--primary-color, #333);
}

.page-post .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: var(--text-color, #333);
}

.page-post .featured-image-wrapper {
    margin: 20px 0 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.page-post .featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.page-post .entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-color, #333);
    margin-bottom: 40px;
}

.page-post .entry-content p {
    margin-bottom: 1.5rem;
}

.page-post .entry-content h2,
.page-post .entry-content h3,
.page-post .entry-content h4,
.page-post .entry-content h5,
.page-post .entry-content h6 {
    margin: 2rem 0 1rem 0;
    font-weight: 600;
    color: var(--text-color, #333);
}

.page-post .entry-footer {
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 0.95rem;
    color: #6b7280;
}

/* Scrollbar styling for sticky sidebar */
.sticky-sidebar::-webkit-scrollbar {
    width: 6px;
}

.sticky-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.sticky-sidebar::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.sticky-sidebar::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .single-post-wrapper,
    .page-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .sticky-sidebar {
        grid-column: 1;
        position: static;
        max-height: none;
    }
}

/*
   SUBSCRIPTION WIDGET - Email Subscription Form
*/

.subscription-widget-content {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.05) 0%, rgba(155, 89, 182, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(52, 152, 219, 0.1);
}

.subscription-description {
    margin: 0 0 1.2rem 0;
    font-size: 0.969rem;
    color: #555;
    line-height: 1.5;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.subscription-form-group {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.subscription-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all var(--transition);
    order: 1;
}

.subscription-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
    background: rgba(52, 152, 219, 0.02);
}

.subscription-input::placeholder {
    color: #999;
}

.subscription-button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    width: 100%;
    order: 2;
}

.subscription-button:hover {
    background: #c53030;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.25);
}

.subscription-button:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(52, 152, 219, 0.15);
}

.subscription-privacy {
    margin: 0;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.4;
    text-align: center;
}

.subscription-privacy a {
    color: var(--accent-color);
    text-decoration: none;
}

.subscription-privacy a:hover {
    text-decoration: underline;
}

/* Subscription Widget in Footer */
.footer-widget .subscription-widget-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-widget .subscription-description {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget .subscription-input {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-widget .subscription-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-widget .subscription-input:focus {
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
}

.footer-widget .subscription-button {
    background: #3498db;
}

.footer-widget .subscription-button:hover {
    background: #c53030;
}

.footer-widget .subscription-privacy {
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget .subscription-privacy a {
    color: #3498db;
}

/* Responsive Subscription Widget */
@media (max-width: 768px) {
    .subscription-form-group {
        flex-direction: column;
    }
    
    .subscription-input {
        width: 100%;
    }
    
    .subscription-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .subscription-widget-content {
        padding: 1rem;
    }
    
    .subscription-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
}
