/*
Theme Name: Prism
Theme URI: https://robbylowe.com
Description: A modern, personal blog theme with paper card post styling, clean design, and professional polish.
Author: Robby
Author URI: https://robbylowe.com
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prism
*/

/**
 * TABLE OF CONTENTS
 * 1. Reset & Base Styles
 * 2. Typography
 * 3. Layout & Structure
 * 4. Navigation
 * 5. Header
 * 6. Posts - Paper Card Format
 * 7. Post Formats (Quote, Video, Image, etc.)
 * 8. Sidebar & Widgets
 * 9. Footer
 * 10. Visual Polish Effects
 * 11. Responsive
 */

/**
 * 1. RESET & BASE STYLES
 */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 112.5%;
}

body {
  margin: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  background-attachment: fixed;
  color: #4a4a4a;
  line-height: 1.8;
}

article, aside, details, figcaption, figure, footer, header, main, nav, section {
  display: block;
}

figure {
  margin: 0;
}

img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

a {
  background-color: transparent;
  color: #22b3eb;
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: #5ec5f0;
}

button, input, optgroup, select, textarea {
  font: inherit;
  margin: 0;
}

/**
 * 2. TYPOGRAPHY
 */
h1, h2, h3, h4, h5, h6 {
  color: #2c2c2c;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 24px;
  font-family: 'Georgia', serif;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { 
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

p {
  margin: 0 0 1.5em;
  line-height: 1.8;
}

blockquote {
  border-left: 3px solid #a89179;
  color: #4a4a4a;
  font-size: 1.2em;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 24px;
  padding: 0 30px;
}

ul, ol {
  margin: 0 0 24px;
  padding: 0 0 0 30px;
}

/**
 * 3. LAYOUT & STRUCTURE
 */
.inner {
  margin: 0 auto;
  max-width: 1200px;
  overflow: hidden;
}

.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 30px;
}

.site-content .inner {
  display: flex;
  gap: 50px;
}

.content-area {
  flex: 1;
  width: 70%;
}

.sidebar {
  width: 350px;
  flex-shrink: 0;
}

/**
 * 4. NAVIGATION
 */
.main-navigation {
  background: linear-gradient(90deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  padding: 0;
  position: relative;
}

.main-navigation .inner {
  position: relative;
  padding: 8px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.primary-menu li {
  position: relative;
}

.primary-menu a {
  color: #cbd5e1;
  text-decoration: none;
  padding: 16px 20px;
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
}

.primary-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #22b3eb;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}

.primary-menu a:hover,
.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a,
.primary-menu .current_page_item > a {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.primary-menu a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after,
.primary-menu .current_page_item > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-show,
.search-show {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-show i,
.search-show i {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.menu-show:hover,
.search-show:hover {
  color: #22b3eb;
  background: rgba(34, 179, 235, 0.15);
  border-color: #22b3eb;
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(34, 179, 235, 0.3);
}

.menu-show:hover i,
.search-show:hover i {
  color: #22b3eb;
}

/**
 * 5. HEADER - SPLIT DESIGN
 */
.site-header {
  background: linear-gradient(135deg, #18181b 0%, #0a0a0b 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid rgba(34, 179, 235, 0.3);
}

.site-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(34, 179, 235, 0.05),
    transparent
  );
  animation: header-shine 10s ease-in-out infinite;
  z-index: 0;
}

@keyframes header-shine {
  0%, 100% { left: -100%; }
  50% { left: 100%; }
}

.site-branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.title-section {
  flex: 1;
  text-align: left;
  background: none;
  padding: 0;
  box-shadow: none;
}

.site-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 10px 0;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  color: #ffffff;
  font-family: 'Georgia', serif;
  letter-spacing: 0;
}

.site-title a {
  color: #ffffff;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: color 0.3s ease;
}

.site-title a:hover {
  color: #22b3eb;
}

.site-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #22b3eb, transparent);
  margin-top: 10px;
  transition: width 0.4s ease, background 0.3s ease;
}

.site-title:hover::after {
  width: 150px;
  background: linear-gradient(90deg, #22b3eb, #60a5fa, transparent);
}

.site-subtitle {
  font-size: 14px;
  color: #94a3b8;
  margin: 0;
  letter-spacing: 0.5px;
  font-weight: 400;
}

.tagline-section {
  flex: 1;
  text-align: center;
  border-left: 2px solid rgba(34, 179, 235, 0.3);
  padding: 50px 40px;
  background: #f8fafc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-description {
  font-size: 18px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
  font-weight: 400;
  font-style: italic;
  position: relative;
  padding-left: 20px;
}

.site-description::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: #22b3eb;
  border-radius: 2px;
}

/**
 * 6. POSTS - PAPER CARD FORMAT
 */
.hentry {
  background: linear-gradient(to bottom, #fdfcfb 0%, #f7f5f3 100%);
  margin-bottom: 60px;
  box-shadow: 
    0 1px 3px rgba(0,0,0,0.12),
    0 6px 16px rgba(0,0,0,0.12),
    0 12px 32px rgba(0,0,0,0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: all 0.3s ease;
  border-left: 4px solid #a89179;
  position: relative;
  animation: fadeInUp 0.6s ease both;
}

/* Paper texture */
.hentry::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(0,0,0,0.02) 31px,
      rgba(0,0,0,0.02) 32px
    );
  pointer-events: none;
  z-index: 0;
}

.hentry::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAH0lEQVQYV2NkYGD4z8DAwMgABXAGNgGwSgYYR7YBimcA+kQBB2d8/0MAAAAASUVORK5CYII=');
  opacity: 0.03;
  pointer-events: none;
}

.hentry:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 2px 6px rgba(0,0,0,0.15),
    0 12px 24px rgba(0,0,0,0.15),
    0 24px 48px rgba(0,0,0,0.1);
}

/* Fade In Animation */
.hentry:nth-child(1) { animation-delay: 0.1s; }
.hentry:nth-child(2) { animation-delay: 0.2s; }
.hentry:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Post Header */
.entry-header {
  position: relative;
  z-index: 1;
}

.entry-header-wrap {
  position: relative;
}

.post-thumbnail {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.post-thumbnail img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.post-thumbnail:hover img {
  transform: scale(1.05);
}

/* Post Title - Matches Page Title Styling */
.entry-title {
  font-family: 'Georgia', serif;
  font-size: 2.5em;
  color: #2c2c2c;
  margin: 0;
  font-weight: 700;
  line-height: 1.3;
  padding: 30px 40px 20px 40px;
  position: relative;
  z-index: 1;
}

.entry-title a {
  color: #2c2c2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-title a:hover {
  color: #6b5d4f;
}

/* Remove brown border from single posts */
.single .hentry,
.single-post .hentry,
.blog .hentry,
.archive .hentry,
.search .hentry {
  border-left: none;
}

/* Post Meta - Dark Bar */
.entry-meta {
  background: linear-gradient(90deg, #1e293b 0%, #0f172a 100%);
  padding: 14px 40px;
  font-size: 0.65em;
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.entry-meta .meta-icon {
  margin-right: 5px;
}

.entry-meta a {
  color: #22b3eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.entry-meta a:hover {
  color: #5ec5f0;
}

.entry-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.entry-meta > span:not(.meta-item) {
  color: #475569;
}

/* Post Content */
.entry-content {
  padding: 30px 40px 40px 40px;
  position: relative;
  z-index: 1;
}

.entry-content p {
  font-size: 1.1em;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 1.5em;
}

.entry-content p:last-child {
  margin-bottom: 0;
}

/* Entry Footer */
.entry-footer {
  padding: 20px 40px;
  border-top: 1px solid #e8ddd0;
  margin: 0 40px 30px 40px;
  position: relative;
  z-index: 1;
}

.entry-footer .entry-meta {
  background: none;
  padding: 0;
  font-size: 0.9em;
  color: #8b7355;
  text-transform: none;
  letter-spacing: normal;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.entry-footer .cat-links,
.entry-footer .tags-links {
  font-style: italic;
}

.entry-footer a {
  color: #6b5d4f;
  font-weight: 600;
}

.entry-footer a:hover {
  color: #a89179;
}

/**
 * 7. POST FORMATS
 */
/* QUOTE POST */
.format-quote {
  border-left-color: #d97706;
}

.format-quote .entry-content {
  text-align: center;
  font-size: 1.3em;
  font-style: italic;
  position: relative;
  padding: 50px 40px 40px;
}

.format-quote .entry-content::before {
  content: '"';
  font-size: 80px;
  color: #f59e0b;
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: Georgia, serif;
}

/* VIDEO POST */
.format-video {
  border-left-color: #ef4444;
}

.format-video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.format-video .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* IMAGE POST */
.format-image {
  border-left-color: #8b5cf6;
}

/* GALLERY POST */
.format-gallery {
  border-left-color: #06b6d4;
}

.format-gallery .gallery img {
  transition: transform 0.5s ease;
}

.format-gallery .gallery img:hover {
  transform: scale(1.05);
}

/* AUDIO POST */
.format-audio {
  border-left-color: #ec4899;
}

/* LINK POST */
.format-link {
  border-left-color: #10b981;
}

/**
 * 8. SIDEBAR & WIDGETS
 */
.widget {
  background: linear-gradient(to bottom, #fdfcfb 0%, #f7f5f3 100%);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 3px;
  transition: all 0.3s ease;
  border-left: 3px solid #a89179;
  position: relative;
}

.widget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 31px,
      rgba(0,0,0,0.02) 31px,
      rgba(0,0,0,0.02) 32px
    );
  pointer-events: none;
}

.widget:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(168, 145, 121, 0.15);
}

.widget-title {
  font-size: 1em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #2c2c2c;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #d4c5b9;
  position: relative;
  z-index: 1;
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.widget ul li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e8ddd0;
}

.widget ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.widget a {
  color: #4a4a4a;
  text-decoration: none;
  font-size: 0.95em;
  transition: color 0.2s ease;
}

.widget a:hover {
  color: #a89179;
}

/**
 * 9. FOOTER
 */
.site-footer {
  background: linear-gradient(90deg, #1e293b 0%, #1e40af 100%);
  padding: 40px 30px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #6366f1;
  border-color: #6366f1;
  color: #fff;
  transform: translateY(-3px);
}

.copyright {
  color: #94a3b8;
  font-size: 13px;
  margin: 0;
}

.footer-center {
  flex: 1;
}

.footer-right {
  display: flex;
  align-items: center;
}

.top-link {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  font-size: 18px;
}

.top-link:hover {
  background: rgba(34, 179, 235, 0.15);
  border-color: #22b3eb;
  color: #22b3eb;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(34, 179, 235, 0.4);
}

/**
 * 10. PAGINATION
 */
.pagination {
  margin: 60px 0 0;
  text-align: center;
}

.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.pagination a,
.pagination .current {
  padding: 10px 18px;
  background: linear-gradient(to bottom, #fdfcfb 0%, #f7f5f3 100%);
  color: #2c2c2c;
  text-decoration: none;
  border-radius: 3px;
  border: 1px solid #d4c5b9;
  transition: all 0.3s ease;
  font-weight: 600;
}

.pagination a:hover {
  background: #a89179;
  color: white;
  border-color: #a89179;
  transform: translateY(-2px);
}

.pagination .current {
  background: #a89179;
  color: white;
  border-color: #a89179;
}

/**
 * 11. RESPONSIVE
 */
@media only screen and (max-width: 960px) {
  .site-content .inner {
    flex-direction: column;
  }
  
  .content-area,
  .sidebar {
    width: 100%;
  }
  
  .site-header {
    padding: 40px 0;
  }
  
  .site-branding {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .title-section {
    text-align: center;
  }
  
  .site-title::after {
    margin-left: auto;
    margin-right: auto;
  }
  
  .tagline-section {
    text-align: center;
    border-left: none;
    border-top: 2px solid rgba(34, 179, 235, 0.2);
    padding-left: 0;
    padding-top: 30px;
  }
}

@media only screen and (max-width: 800px) {
  .site-header,
  .site-content,
  .site-footer {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .main-navigation .inner {
    padding: 0 15px;
  }
}

@media only screen and (max-width: 640px) {
  .site-title {
    font-size: 36px;
  }
  
  .site-title::after {
    width: 60px;
    height: 2px;
  }
  
  .site-description {
    font-size: 16px;
  }
  
  .entry-title {
    font-size: 2em;
    padding: 30px 25px 20px 25px;
  }
  
  .entry-meta {
    padding: 14px 25px;
    font-size: 0.7em;
    gap: 10px;
  }
  
  .entry-content {
    padding: 20px 25px 30px 25px;
  }
  
  .entry-content p {
    font-size: 1em;
  }
  
  .entry-footer {
    padding: 15px 25px;
    margin: 0 25px 25px 25px;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

@media only screen and (max-width: 480px) {
  .site-header {
    padding: 30px 0;
  }
  
  .site-title {
    font-size: 28px;
  }
  
  .site-title::after {
    width: 50px;
    height: 2px;
  }
  
  .site-description {
    font-size: 14px;
  }
  
  .entry-title {
    font-size: 1.5em;
    padding: 25px 20px 15px 20px;
  }
  
  .entry-meta {
    padding: 12px 20px;
  }
  
  .entry-content {
    padding: 15px 20px 25px 20px;
  }
}

/* ===================================
   Page Meta Badge Styling - Option 2: Subtle Dark Tint
   =================================== */

/* Remove brown border from pages */
.page .hentry {
    border-left: none;
}

.page .entry-meta.page-meta-badges {
    display: inline-flex !important;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 15px;
    background: rgba(30, 41, 59, 0.15) !important;
    padding: 12px 16px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(34, 179, 235, 0.2) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
}

.page .entry-meta.page-meta-badges .meta-badge {
    display: inline-block !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
}

.page .entry-meta.page-meta-badges .meta-badge.author-badge {
    background: #22b3eb !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(34, 179, 235, 0.3) !important;
}

.page .entry-meta.page-meta-badges .meta-badge:not(.author-badge) {
    background: white !important;
    color: #64748b !important;
    border: 2px solid #cbd5e1 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}

.page .entry-meta.page-meta-badges .meta-badge a {
    color: inherit !important;
    text-decoration: none !important;
}

.page .entry-meta.page-meta-badges .meta-badge.author-badge:hover {
    background: #5ec5f0 !important;
    box-shadow: 0 3px 12px rgba(34, 179, 235, 0.4) !important;
}

.page .entry-meta.page-meta-badges .meta-badge:not(.author-badge):hover {
    border-color: #22b3eb !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

/* ===================================
   Post Meta Badge Styling - Option 2: Subtle Dark Tint
   =================================== */

/* Remove brown border from posts */
.single .hentry {
    border-left: none;
}

.single-post .entry-meta.post-meta-badges,
.single .entry-meta.post-meta-badges,
article.post .entry-meta.post-meta-badges {
    display: inline-flex !important;
    gap: 15px !important;
    flex-wrap: wrap !important;
    margin-bottom: 20px !important;
    margin-left: 15px !important;
    background: rgba(30, 41, 59, 0.15) !important;
    padding: 12px 16px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(34, 179, 235, 0.2) !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
}

.single-post .entry-meta.post-meta-badges .meta-badge,
.single .entry-meta.post-meta-badges .meta-badge,
article.post .entry-meta.post-meta-badges .meta-badge {
    display: inline-block !important;
    padding: 8px 20px !important;
    border-radius: 25px !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    font-weight: 600 !important;
}

.single-post .entry-meta.post-meta-badges .meta-badge.author-badge,
.single .entry-meta.post-meta-badges .meta-badge.author-badge,
article.post .entry-meta.post-meta-badges .meta-badge.author-badge {
    background: #22b3eb !important;
    color: white !important;
    font-weight: 700 !important;
    box-shadow: 0 2px 8px rgba(34, 179, 235, 0.3) !important;
}

.single-post .entry-meta.post-meta-badges .meta-badge:not(.author-badge),
.single .entry-meta.post-meta-badges .meta-badge:not(.author-badge),
article.post .entry-meta.post-meta-badges .meta-badge:not(.author-badge) {
    background: white !important;
    color: #64748b !important;
    border: 2px solid #cbd5e1 !important;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1) !important;
}

.single-post .entry-meta.post-meta-badges .meta-badge a,
.single .entry-meta.post-meta-badges .meta-badge a,
article.post .entry-meta.post-meta-badges .meta-badge a {
    color: inherit !important;
    text-decoration: none !important;
}

.single-post .entry-meta.post-meta-badges .meta-badge.author-badge:hover,
.single .entry-meta.post-meta-badges .meta-badge.author-badge:hover,
article.post .entry-meta.post-meta-badges .meta-badge.author-badge:hover {
    background: #5ec5f0 !important;
    box-shadow: 0 3px 12px rgba(34, 179, 235, 0.4) !important;
}

.single-post .entry-meta.post-meta-badges .meta-badge:not(.author-badge):hover,
.single .entry-meta.post-meta-badges .meta-badge:not(.author-badge):hover,
article.post .entry-meta.post-meta-badges .meta-badge:not(.author-badge):hover {
    border-color: #22b3eb !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}

/* Hide old meta elements when using badges */
.single-post .entry-meta.post-meta-badges .meta-icon,
.single .entry-meta.post-meta-badges .meta-icon,
article.post .entry-meta.post-meta-badges .meta-icon {
    display: none !important;
}

.single-post .entry-meta.post-meta-badges > span:not(.meta-badge),
.single .entry-meta.post-meta-badges > span:not(.meta-badge),
article.post .entry-meta.post-meta-badges > span:not(.meta-badge) {
    display: none !important;
}