/*
Theme Name: House of Cats
Theme URI: https://houseforcats.com
Author: House of Cats
Author URI: https://houseforcats.com
Description: A clean, modern Amazon affiliate theme for cat furniture and cat houses. Built for high-converting affiliate blogs with product reviews, comparison tables, and SEO-optimized blog layouts.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: houseofcats
Tags: blog, affiliate, pet, cat, e-commerce, responsive, custom-colors, custom-logo, featured-images, sticky-post, threaded-comments, translation-ready
*/

/* =============================================
   HOUSE OF CATS THEME - Main Stylesheet
   ============================================= */

:root {
  --orange: #FF8C42;
  --orange-dark: #FF6B00;
  --orange-light: #FFF3E0;
  --bg: #FAFAF8;
  --white: #ffffff;
  --text: #2C2C2C;
  --muted: #888888;
  --border: #F0EDE8;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 16px;
  --font: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.7; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--orange-dark); }
ul, ol { padding-left: 1.5rem; }
p { margin-bottom: 1rem; }
h1,h2,h3,h4,h5,h6 { line-height: 1.25; font-weight: 800; color: var(--text); margin-bottom: 0.75rem; }

/* CONTAINER */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 780px; margin: 0 auto; padding: 0 24px; }

/* =============================================
   NAVIGATION
   ============================================= */
#site-header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  position: sticky; top: 0; z-index: 1000;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; padding: 0 24px;
}
.site-branding { display: flex; align-items: center; gap: 12px; }
.site-branding .custom-logo { height: 44px; width: 44px; object-fit: contain; }
.site-branding .brand-text .site-title { font-size: 20px; font-weight: 900; color: var(--text); margin: 0; line-height: 1.1; }
.site-branding .brand-text .site-title a { color: var(--text); }
.site-branding .brand-text .site-description { font-size: 10px; color: var(--orange); font-weight: 500; margin: 0; }
#primary-menu { display: flex; gap: 28px; list-style: none; align-items: center; margin: 0; padding: 0; }
#primary-menu a { font-weight: 600; font-size: 14px; color: #555; padding: 4px 0; border-bottom: 2px solid transparent; }
#primary-menu a:hover, #primary-menu li.current-menu-item a, #primary-menu li.current_page_item a { color: var(--orange); border-bottom-color: var(--orange); }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; font-size: 26px; color: var(--text); padding: 4px; }

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF3E8 50%, #FFF0F5 100%);
  padding: 80px 24px; text-align: center;
}
.hero-eyebrow { font-size: 13px; color: var(--orange); font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 2px; display: block; }
.hero-section h1 { font-size: clamp(30px, 5vw, 56px); font-weight: 900; margin-bottom: 20px; line-height: 1.15; }
.hero-section h1 span { color: var(--orange); }
.hero-section .hero-desc { font-size: 18px; color: #666; max-width: 520px; margin: 0 auto 36px; line-height: 1.7; }
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-badges { margin-top: 28px; display: flex; gap: 28px; justify-content: center; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 6px; color: #888; font-size: 13px; font-weight: 600; }
.hero-badge .check { color: #4CAF50; }

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important; padding: 13px 28px; border-radius: 12px;
  font-weight: 700; font-size: 15px; border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); color: #fff !important; }
.btn-outline {
  display: inline-block;
  background: transparent; color: var(--orange) !important;
  border: 2px solid var(--orange); padding: 11px 26px; border-radius: 12px;
  font-weight: 700; font-size: 15px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--orange); color: #fff !important; }
.btn-amazon {
  display: block; text-align: center;
  background: linear-gradient(135deg, #FF8C42, #FF6B00);
  color: #fff !important; border-radius: 10px; padding: 13px 20px;
  font-weight: 700; font-size: 15px; margin-top: auto;
  transition: opacity 0.2s; text-decoration: none;
}
.btn-amazon:hover { opacity: 0.9; color: #fff !important; }
.btn-white { background: #fff; color: var(--orange-dark) !important; padding: 13px 28px; border-radius: 12px; font-weight: 800; font-size: 15px; display: inline-block; }
.btn-white:hover { opacity: 0.95; color: var(--orange-dark) !important; }

/* =============================================
   SECTIONS
   ============================================= */
section { padding: 64px 0; }
.section-white { background: #fff; }
.section-bg { background: var(--bg); }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header .eyebrow { font-size: 12px; color: var(--orange); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; }
.section-header h2 { font-size: 32px; font-weight: 900; margin-bottom: 8px; }
.section-header p { color: var(--muted); font-size: 16px; margin: 0; }

/* =============================================
   CATEGORY GRID
   ============================================= */
.category-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.category-card { border-radius: var(--radius); padding: 32px 20px; text-align: center; transition: transform 0.2s, box-shadow 0.2s; display: block; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.category-card .cat-icon { font-size: 52px; margin-bottom: 14px; display: block; }
.category-card .cat-name { font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 6px; display: block; }
.category-card .cat-desc { color: #777; font-size: 13px; }

/* =============================================
   PRODUCT CARDS
   ============================================= */
.products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.product-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s; position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 36px rgba(0,0,0,0.14); }
.product-badge { position: absolute; top: 12px; left: 12px; z-index: 2; color: #fff; border-radius: 20px; padding: 4px 14px; font-size: 12px; font-weight: 700; }
.product-image { background: #FAF9F6; padding: 20px; display: flex; justify-content: center; align-items: center; height: 230px; }
.product-image img { max-height: 190px; width: auto; object-fit: contain; }
.product-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-cat-label { font-size: 11px; color: var(--orange); font-weight: 700; margin-bottom: 5px; text-transform: uppercase; letter-spacing: 1px; }
.product-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; color: var(--text); }
.product-price { font-size: 26px; font-weight: 900; margin: 10px 0 14px; color: var(--text); }
.product-pros { margin-bottom: 16px; flex: 1; }
.pro-item { display: flex; gap: 7px; align-items: flex-start; margin-bottom: 5px; font-size: 13px; color: #555; }
.pro-check { color: #4CAF50; font-weight: 700; font-size: 14px; flex-shrink: 0; margin-top: 1px; }

/* STAR RATING */
.star-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 4px; }
.stars { display: flex; }
.star { font-size: 17px; }
.star.on { color: #FF8C42; }
.star.off { color: #DDD; }
.review-count { color: var(--muted); font-size: 13px; }

/* =============================================
   COMPARISON TABLE
   ============================================= */
.comparison-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.comparison-table thead tr { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; }
.comparison-table th { padding: 14px 18px; text-align: center; font-weight: 700; font-size: 14px; }
.comparison-table th:first-child { text-align: left; }
.comparison-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); }
.comparison-table td:first-child { text-align: left; font-weight: 600; }
.comparison-table tr:nth-child(even) { background: var(--bg); }
.comparison-table tr:nth-child(odd) { background: #fff; }
.comparison-table tr:hover { background: #FFF8F0; }
.table-btn { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff !important; padding: 8px 16px; border-radius: 8px; font-weight: 700; font-size: 13px; white-space: nowrap; }
.table-btn:hover { opacity: 0.9; color: #fff !important; }

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }
.blog-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; transition: transform 0.2s, box-shadow 0.2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.blog-card-accent { height: 6px; }
.blog-card-body { padding: 22px; }
.blog-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.post-cat-badge { padding: 4px 12px; border-radius: 20px; font-size: 11px; font-weight: 700; }
.read-time { color: var(--muted); font-size: 12px; }
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--text); line-height: 1.4; margin-bottom: 10px; }
.blog-card-excerpt { color: #777; font-size: 14px; margin-bottom: 16px; line-height: 1.6; }
.blog-card-footer { display: flex; justify-content: space-between; align-items: center; }
.post-date { color: var(--muted); font-size: 12px; }
.read-more { color: var(--orange); font-weight: 700; font-size: 13px; }

/* =============================================
   REVIEW POSTS (single product reviews)
   ============================================= */
.review-card { background: #fff; border-radius: 20px; box-shadow: var(--shadow); margin-bottom: 32px; overflow: hidden; }
.review-inner { display: flex; flex-wrap: wrap; }
.review-img-col { flex: 0 0 280px; background: #FAF9F6; display: flex; align-items: center; justify-content: center; padding: 24px; position: relative; min-height: 260px; }
.review-img-col img { max-height: 200px; width: auto; object-fit: contain; }
.review-rank { position: absolute; top: 12px; right: 12px; background: var(--text); color: #fff; border-radius: 8px; padding: 4px 9px; font-size: 12px; font-weight: 700; }
.review-body-col { flex: 1; min-width: 280px; padding: 28px; }
.review-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.review-desc { color: #777; font-size: 14px; line-height: 1.7; margin: 12px 0; }
.price-row { display: flex; align-items: center; gap: 12px; margin: 12px 0; flex-wrap: wrap; }
.price-main { font-size: 28px; font-weight: 900; }
.price-orig { font-size: 16px; color: #bbb; text-decoration: line-through; }
.price-save { background: #E8F5E9; color: #388E3C; padding: 3px 9px; border-radius: 8px; font-size: 12px; font-weight: 700; }
.pros-cons { display: flex; gap: 24px; flex-wrap: wrap; margin-bottom: 18px; }
.pros-col, .cons-col { flex: 1; min-width: 130px; }
.pros-label { font-size: 12px; font-weight: 700; color: #4CAF50; margin-bottom: 6px; text-transform: uppercase; }
.cons-label { font-size: 12px; font-weight: 700; color: #F44336; margin-bottom: 6px; text-transform: uppercase; }
.pc-item { font-size: 13px; color: #555; margin-bottom: 4px; line-height: 1.5; }
.review-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-details { background: #F5F5F5; color: #555; border: none; padding: 12px 20px; border-radius: 10px; font-weight: 600; font-size: 14px; cursor: pointer; transition: background 0.2s; }
.btn-details:hover { background: #EBEBEB; }
.review-expanded { border-top: 1px solid var(--border); padding: 28px; background: var(--bg); display: none; }
.review-expanded.open { display: block; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; margin-top: 12px; }
.feature-chip { background: #fff; padding: 10px 14px; border-radius: 10px; font-size: 13px; color: #555; border: 1px solid var(--border); }
.verdict-box { margin-top: 20px; padding: 16px 20px; background: var(--orange-light); border-radius: 12px; border: 1px solid #FFD4A3; font-size: 14px; color: #555; line-height: 1.7; }
.verdict-box strong { color: var(--orange); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); padding: 64px 24px; text-align: center; }
.cta-banner h2 { font-size: 32px; font-weight: 900; color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.92); font-size: 17px; margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* =============================================
   BLOG / SINGLE POST
   ============================================= */
.entry-header { margin-bottom: 32px; }
.entry-header .post-category-badge { display: inline-block; padding: 4px 14px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 14px; }
.entry-header h1 { font-size: clamp(26px, 4vw, 40px); line-height: 1.2; margin-bottom: 14px; }
.entry-meta { display: flex; gap: 16px; color: var(--muted); font-size: 13px; flex-wrap: wrap; }
.entry-content { font-size: 16px; line-height: 1.8; color: #444; }
.entry-content h2 { font-size: 24px; font-weight: 800; margin: 36px 0 12px; color: var(--text); }
.entry-content h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; }
.entry-content p { margin-bottom: 18px; }
.entry-content ul, .entry-content ol { margin-bottom: 18px; }
.entry-content li { margin-bottom: 8px; }
.entry-content strong { color: var(--text); font-weight: 700; }
.entry-content img { border-radius: 12px; margin: 24px 0; }
.quick-picks-box { background: var(--orange-light); border-radius: 16px; padding: 24px; margin: 32px 0; border: 1px solid #FFD4A3; }
.quick-picks-box h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.quick-pick-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid #FFD4A3; }
.quick-pick-row:last-child { margin: 0; padding: 0; border: none; }
.related-posts { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 32px; }
.related-posts h3 { font-size: 18px; font-weight: 700; margin-bottom: 18px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.related-card { padding: 16px; border-radius: 12px; font-weight: 600; color: var(--text); display: block; transition: opacity 0.2s; }
.related-card:hover { opacity: 0.85; color: var(--text); }
.affiliate-note { font-size: 12px; color: var(--muted); margin-top: 40px; line-height: 1.6; padding: 14px; background: #F5F5F5; border-radius: 8px; }
.affiliate-note strong { color: var(--orange); }

/* =============================================
   FOOTER
   ============================================= */
#site-footer { background: #2C2C2C; color: #aaa; padding: 52px 24px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 32px; margin-bottom: 40px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand-row img { height: 34px; width: 34px; object-fit: contain; }
.footer-brand-row span { color: #fff; font-weight: 800; font-size: 16px; }
.footer-tagline { font-size: 13px; color: #888; line-height: 1.7; }
.footer-heading { color: #fff; font-weight: 700; margin-bottom: 16px; font-size: 14px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #888; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid #444; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.affiliate-disclosure strong { color: var(--orange); }

/* =============================================
   PAGE HERO (category pages)
   ============================================= */
.page-hero { padding: 56px 24px; text-align: center; }
.page-hero .page-icon { font-size: 52px; margin-bottom: 14px; display: block; }
.page-hero h1 { font-size: 40px; font-weight: 900; margin-bottom: 12px; }
.page-hero .page-subtitle { color: var(--muted); font-size: 17px; max-width: 520px; margin: 0 auto; }

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: var(--text); }

/* =============================================
   SIDEBAR
   ============================================= */
.content-sidebar-wrap { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: flex-start; }
.widget { background: #fff; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); margin-bottom: 28px; }
.widget-title { font-size: 16px; font-weight: 800; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); color: var(--text); }
.widget ul { list-style: none; padding: 0; }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: #555; }
.widget ul li a:hover { color: var(--orange); }
.sidebar-cta { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); border-radius: var(--radius); padding: 28px 20px; text-align: center; margin-bottom: 28px; }
.sidebar-cta h3 { color: #fff; font-size: 18px; margin-bottom: 10px; }
.sidebar-cta p { color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 16px; }

/* =============================================
   COMMENTS
   ============================================= */
.comments-area { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--border); }
.comments-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.comment-list { list-style: none; padding: 0; }
.comment { background: #fff; border-radius: 12px; padding: 20px; margin-bottom: 16px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
.comment-author { font-weight: 700; font-size: 15px; margin-bottom: 4px; }
.comment-date { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.comment-content { font-size: 14px; color: #555; }
.comment-respond { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-top: 28px; }
.comment-respond h3 { font-size: 20px; font-weight: 800; margin-bottom: 20px; }
.comment-form label { display: block; font-weight: 600; font-size: 13px; margin-bottom: 6px; }
.comment-form input, .comment-form textarea { width: 100%; padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 14px; font-family: var(--font); outline: none; transition: border-color 0.2s; margin-bottom: 16px; }
.comment-form input:focus, .comment-form textarea:focus { border-color: var(--orange); }
.comment-form textarea { height: 120px; resize: vertical; }
.form-submit input { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); color: #fff; border: none; padding: 12px 28px; border-radius: 10px; font-weight: 700; font-size: 15px; cursor: pointer; }

/* =============================================
   PAGINATION
   ============================================= */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 10px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; }
.pagination a { background: #fff; color: #555; box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.pagination a:hover { background: var(--orange); color: #fff; }
.pagination .current { background: var(--orange); color: #fff; }

/* =============================================
   SEARCH FORM
   ============================================= */
.search-form { display: flex; gap: 8px; }
.search-form input { flex: 1; padding: 12px 16px; border: 2px solid var(--border); border-radius: 10px; font-size: 14px; outline: none; }
.search-form input:focus { border-color: var(--orange); }
.search-form button { background: var(--orange); color: #fff; border: none; padding: 12px 18px; border-radius: 10px; cursor: pointer; font-size: 18px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .content-sidebar-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  #primary-menu { display: none; }
  .menu-toggle { display: block; }
  #mobile-nav { background: #fff; padding: 16px 24px; border-top: 1px solid var(--border); display: none; }
  #mobile-nav.open { display: block; }
  #mobile-nav ul { list-style: none; padding: 0; margin: 0; }
  #mobile-nav ul li { border-bottom: 1px solid var(--border); }
  #mobile-nav ul li:last-child { border-bottom: none; }
  #mobile-nav ul a { display: block; padding: 12px 0; font-weight: 600; color: #555; font-size: 15px; }
  #mobile-nav ul a:hover { color: var(--orange); }
  .hero-section { padding: 52px 20px; }
  section { padding: 44px 0; }
  .review-img-col { flex: 0 0 100%; min-height: 220px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-section h1 { font-size: 28px; }
  .blog-grid { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 26px; }
}

/* =============================================
   WORDPRESS DEFAULTS
   ============================================= */
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.wp-block-image img { border-radius: 10px; }
.aligncenter { display: block; margin: 0 auto; }
.alignright { float: right; margin-left: 24px; }
.alignleft { float: left; margin-right: 24px; }
.wp-caption { max-width: 100%; }
.sticky { /* highlighted post */ }
.bypostauthor { /* author highlight */ }
