/*
Theme Name: StarterKitHub
Author: Bree Peterson
Version: 1.0
*/

/* Paste ALL your CSS below */

body, p {
	font-family: 'Open Sans', sans-serif;
}


.post-body a:not(.btn2) {
  color: #1D4ED8;
}
.sidebar {
    width:100%;
    max-width:300px;
    display:flex;
    flex-direction:column;
    gap:25px;
    font-family: 'Open Sans', Arial, sans-serif;
}

/* Only Recent Posts sticky */
.sticky-widget {
    top: 20px;
}

/* Widget titles */
.sidebar .widget h3 {
    font-size:18px;
    margin-bottom:12px;
    border-bottom:2px solid #CC5500;
    padding-bottom:5px;
    color:#222;
}

/* Lists for Recent Posts & Categories */
.sidebar ul {
    list-style:none;
    padding-left:0;
    margin:0;
}
.sidebar ul li {
    margin-bottom:8px;
}
.sidebar ul li a {
    color:#CC5500;
    text-decoration:none;
    transition:0.3s;
}
.sidebar ul li a:hover {
    text-decoration:underline;
}

/* Top 8 Essentials Cards */
.sidebar .top8-sidebar .sidebar-card {
    display:flex;
    gap:10px;
    align-items:center;
    margin-bottom:12px;
    background:#fff;
    padding:8px;
    border-radius:8px;
    box-shadow:0 3px 8px rgba(0,0,0,0.08);
    transition:0.3s;
}
.sidebar .top8-sidebar .sidebar-card img {
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:6px;
}
.sidebar .top8-sidebar .sidebar-card a {
    font-weight:bold;
    color:#CC5500;
    text-decoration:none;
}
.sidebar .top8-sidebar .sidebar-card:hover {
    transform:translateX(4px);
}

/* Button styling */
.sidebar .button {
    display:inline-block;
    width:100%;
    padding:10px 0;
    background:#CC5500;
    color:white;
    font-weight:bold;
    text-align:center;
    border-radius:6px;
    margin-top:10px;
    text-decoration:none;
    transition:0.3s;
}
.sidebar .button:hover {
    background:#e68a00;
}

/* Start Here CTA */
.sidebar .start-here {
    text-align:center;
    background:#fffae6;
    padding:15px;
    border-left:4px solid #CC5500;
    border-radius:8px;
    box-shadow:0 3px 8px rgba(0,0,0,0.08);
}
.sidebar .start-here h3 {
    color:#222;
}
.sidebar .start-here p {
    font-size:14px;
    color:#555;
    margin:10px 0;
}

/* Mobile: disable sticky & stack sidebar */
@media(max-width:900px){
    .sticky-widget {
        top: auto;
    }
    .sidebar {
        max-width:100%;
        margin-top:20px;
    }
}


/* Sticky Recent Posts widget */
.sticky-widget {
    top: 20px;  /* distance from top */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Heading style */
.sticky-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #CC5500;
    border-bottom: 2px solid #CC5500;
    padding-bottom: 5px;
}

/* List style */
.sticky-widget ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.sticky-widget ul li {
    margin-bottom: 20px;
}

.sticky-widget ul li:last-child {
    margin-bottom: 0;
}

.sticky-widget ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.2s;
}

.sticky-widget ul li a:hover {
    color: #CC5500;
}



/* Mobile fallback */
@media(max-width:900px){
    .sticky-widget {
        top: auto;
        margin-bottom: 20px;
    }
}

.widget {margin-bottom:20px}
.post-header {padding:0}


/* ==========================
   General Typography & Layout
========================== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #222;
    background: #f5f5f5;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
}

p {
    margin-bottom: 1.2em; /* Adds space between paragraphs */
}

/* ==========================
   Grid Layout for Posts
========================== */
.homepage-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.homepage-posts .card {
    background: white;
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.homepage-posts .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.homepage-posts .card img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.homepage-posts .title {
    font-weight: 600;
    margin: 10px 0 5px;
    font-size: 1.1rem;
}

.homepage-posts .description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 10px;
}

.view-link {
    color: #f39c12;
    text-decoration: none;
    font-weight: 600;
}

.view-link:hover {
    text-decoration: underline;
}

/* ==========================
   Top 8 Scrollable Section
========================== */
.top5 .top5-row {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-top: 20px;
}

.top5 .top5-row .card {
    flex: 0 0 180px; /* fixed width */
    min-width: 180px;
    position: relative;
}

.top5 .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #f39c12;
    color: white;
    font-size: 12px;
    padding: 3px 6px;
    border-radius: 4px;
    z-index: 10;
}

.top5 .card img {
    height: 150px;
    object-fit: contain;
    border-radius: 6px;
}

.top5 .card .title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 8px;
}

/* ==========================
   Sidebar Sticky Recent Posts
========================== */
.widget_recent_entries {
    top: 100px; /* distance from top when scrolling */
}

.widget_recent_entries h2 {
    top: 100px;
    background: #fff; /* keeps the header readable */
    padding: 8px 0;
    z-index: 5;
}

/* Fix hover for multi-line links */
.widget_recent_entries li a {
    display: inline-block;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 768px) {
    .homepage-posts {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 500px) {
    nav {
        font-size: 0.85rem; /* smaller nav links */
    }
}

/* ==========================
   Global Typography & Layout
========================== */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #222;
    background: #f5f5f5;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
}

p {
    margin-bottom: 1.2em; /* spacing between paragraphs */
}

/* ==========================
   Blog Cards
========================== */
#latest-posts .card {
    background: #fff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
	margin-bottom: 20px;

}

#latest-posts .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

#latest-posts .card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 10px;
}

#latest-posts .card h2 a {
    color: #222;
    text-decoration: none;
    font-size: 1.2rem;
}

#latest-posts .card h2 a:hover {
    color: #f39c12;
}

#latest-posts .card p {
    color: #555;
    font-size: 0.95rem;
}

#latest-posts .card a {
    color: #f39c12;
    font-weight: 600;
    text-decoration: none;
}

#latest-posts .card a:hover {
    text-decoration: underline;
}

/* ==========================
   Sidebar
========================== */


.widget {
    background: #fff;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Sticky Recent Posts */
.widget_recent_entries {
    top: 100px;
}

.widget_recent_entries h2 {
    top: 100px;
    background: #fff;
    padding: 8px 0;
    z-index: 5;
}

/* Fix multi-line link hover */
.widget_recent_entries li a {
    display: inline-block;
}

/* ==========================
   Pagination
========================== */
.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 12px;
    background: #dddddd;
    color: #222;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.pagination a:hover {
    background: #e0e0e0;
}

/* ==========================
   Responsive
========================== */
@media (max-width: 992px) {
    main#main-content {
        flex-direction: column;
    }

    aside {
        margin-top: 30px;
    }
}
#main-content {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

#latest-posts { flex: 3; }
aside { flex: 1; min-width: 250px; }
/* Styled Search Widget */
.search-widget {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.search-widget h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff9900;
}

.search-widget .search-form {
    display: flex;
    gap: 5px;
}

.search-widget input[type="search"] {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.search-widget input[type="search"]:focus {
    outline: none;
    border-color: #ff9900;
    box-shadow: 0 0 5px rgba(255,153,0,0.5);
}

.search-widget button {
    background: #ff9900;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.search-widget button:hover {
    background: #e68a00;
}
/* Categories Widget */
.categories-widget {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.categories-widget h2 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #ff9900;
}

.categories-widget ul {
    list-style: none;
    padding-left: 0;
}

.categories-widget li {
    margin-bottom: 8px;
}

.categories-widget li a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s;
}

.categories-widget li a:hover {
    color: #ff9900;
}
/* Recent Posts Sticky */
.recent-posts-widget {
    top: 20px; /* distance from top */
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.recent-posts-widget h2 {
    font-size: 16px;
    color: #ff9900;
    margin-bottom: 12px;
}

.recent-posts-widget ul {
    list-style: none;
    padding-left: 0;
}

.recent-posts-widget li {
    margin-bottom: 8px;
}

.recent-posts-widget li a {
    color: #222;
    text-decoration: none;
    line-height: 1.4;
}

.recent-posts-widget li a:hover {
    color: #ff9900;
}
.start-here {
  background: #ffffff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-align: center;
}

.start-here h2 {
  margin-bottom: 10px;
}

.start-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.start-links a {
  background: #f0f0f0;
  padding: 10px 15px;
  border-radius: 6px;
  text-decoration: none;
  color: #222;
  transition: 0.2s;
  font-weight:600;
}

.start-links a:hover {
  background: #e0e0e0;
}
.book-button:hover {
  background-color: #45a049; /* slightly darker green on hover */
}
@media (max-width: 1200px) {
  .hero {
      margin-top:0;
	  border-radius:0;
  }
}
.post-content {
	font-family: 'Open Sans', sans-serif;
}
.blog-post {
	margin-bottom:40px;
}
.blog-post {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  margin-bottom: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* Image container */
.post-thumb {
  display: block;
  overflow: hidden;
  margin-bottom:20px;
}

.post-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

/* Content */
.post-content {
  padding: 16px 18px 20px;
}

.post-content h2 {
  margin-bottom: 10px;
}

.post-content h2 a {
  text-decoration: none;
  color: #222;
  transition: 0.2s ease;
}

.post-content h2 a:hover {
  color: #CC5500; /* subtle green vibe for recovery theme */
	text-decoration:underline;
}


.blog-post {
	padding:20px;
}

.post-content{
	padding:0;
}

.category-header {
    margin-bottom: 30px;
    text-align: center;
}

.category-description {
    font-size: 1.1rem;
    color: #555;
    margin-top: 10px;
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 30px; /* space between posts */
}

.post-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
    border: 1px solid #eee;
    padding: 20px;
    border-radius: 10px;
    align-items: flex-start;
	background-color:#fff;
}

.post-image img {
    width: 200px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.post-content {
    flex: 1;
}

.post-title {
    margin-top: 0;
    margin-bottom: 10px;
}

.post-excerpt {
    margin-bottom: 15px;
    color: #666;
}

.button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #2d9cdb;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.button:hover {
    background-color: #2383c3;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .post-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .post-image img {
        width: 100%;
        max-width: 400px;
    }
}
h2 {font-size:normal}


.blog-header {
  max-width: 800px;
  margin: 0 auto 30px;
  text-align: center;
  padding: 0 15px;
}

.blog-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.blog-intro {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Category Pills */
.category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.category-list a {
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eee;
  color: #333;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.category-list a:hover {
  background: #2383c3;
  color: #fff;
}

/* Dropdown */
.category-dropdown {
  display: none;
}

.category-dropdown select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

/* Responsive: switch to dropdown on small screens */
@media (max-width: 600px) {
  .category-list {
    display: none;
  }

  .category-dropdown {
    display: block;
  }
}
/* Logo image */
.site-logo img {
    max-height: 100px;
    width: auto;
	padding-bottom:0;
	margin-bottom:0;
}

/* Hamburger button */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Mobile styles */
@media (max-width: 700px) {

    .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #111;
        margin-top: 10px;
        border-radius: 8px;
        padding: 10px 0;
    }

    .main-nav a {
        display: block;
        padding: 12px;
        text-align: center;
    }

    .main-nav.active {
        display: flex;
    }
}
.site-header{padding:0px 20px}
.site-logo img {
    display: block;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.post-body h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 1.5rem 0 1rem;
}

.post-body h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
}

.post-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
}

.post-body p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
}

.post-body ul {
  margin: 1rem 0;
  padding-left: 20px;
}

.post-body li {
  margin-bottom: 0.5rem;
}


.btn2 {
  display: inline-block;
  background: #ff9900;
  color: #000 !important;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin: 8px 0;
}

.btn2:hover {
  background: #e68a00;
}


.size-full {
    width: 100%;
    height: auto !important;
}
.skbottom {
	color:#eee;
}





    /* Hero */
    .hero {
      padding: 3.5rem 0 2.5rem;
      border-bottom: 1px solid #ebebeb;
    }
    .eyebrow {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 1rem;
    }
    .hero h1 {
      font-size: 40px;
      font-weight: 600;
      line-height: 1.15;
      color: #111;
      margin-bottom: 1.25rem;
    }
    .hero h1 span { color: #534AB7; }
    .hero-sub {
      font-size: 17px;
      color: #555;
      line-height: 1.7;
      max-width: 560px;
    }

    /* Sections */
    .section {
      padding: 2.5rem 0;
      border-bottom: 1px solid #ebebeb;
    }
    .section:last-child { border-bottom: none; }

    h2 {
      font-size: 22px;
      font-weight: 600;
      color: #111;
      margin-bottom: 1.25rem;
    }


    p:last-child { margin-bottom: 0; }

    /* Pullquote */
    .pullquote {
      border-left: 3px solid #534AB7;
      padding: 1rem 1.5rem;
      margin: 1.5rem 0;
      background: #EEEDFE;
      border-radius: 0 8px 8px 0;
    }
    .pullquote p {
      font-size: 18px;
      font-weight: 600;
      color: #3C3489;
      margin: 0;
      font-style: italic;
    }

    /* Kit grid */
    .kit-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 1.5rem 0;
    }
    @media (max-width: 480px) {
      .kit-grid { grid-template-columns: repeat(2, 1fr); }
    }
    .kit-card {
      background: #f7f7f5;
      border: 1px solid #e8e8e8;
      border-radius: 12px;
      padding: 0.9rem 1rem;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .kit-icon { font-size: 20px; flex-shrink: 0; }
    .kit-label {
      font-size: 14px;
      font-weight: 500;
      color: #222;
      line-height: 1.3;
    }

    /* Badges */
    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 1.25rem 0 0;
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #EEEDFE;
      color: #3C3489;
      font-size: 13px;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 99px;
    }
    .badge svg {
      width: 13px;
      height: 13px;
      stroke: #534AB7;
      fill: none;
      stroke-width: 2.5;
      flex-shrink: 0;
    }

    /* Rules */
    .rule-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 1.25rem;
    }
    .rule {
      display: flex;
      gap: 14px;
      align-items: flex-start;
    }
    .rule-num {
      font-size: 13px;
      font-weight: 600;
      color: #534AB7;
      background: #EEEDFE;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 1px;
    }
    .rule-text {
      font-size: 15px;
      color: #111;
      font-weight: 500;
      line-height: 1.5;
    }
    .rule-text span {
      color: #666;
      font-size: 14px;
      font-weight: 400;
      display: block;
      margin-top: 2px;
    }

    /* Steps */
    .steps {
      display: flex;
      flex-direction: column;
      margin-top: 1.25rem;
    }
    .step {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding-bottom: 1.5rem;
      position: relative;
    }
    .step:last-child { padding-bottom: 0; }
    .step-line {
      position: absolute;
      left: 13px;
      top: 30px;
      bottom: 0;
      width: 1px;
      background: #e0e0e0;
    }
    .step:last-child .step-line { display: none; }
    .step-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #534AB7;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }
    .step-body { padding-top: 3px; }
    .step-body strong {
      font-size: 15px;
      font-weight: 600;
      color: #111;
      display: block;
      margin-bottom: 2px;
    }
    .step-body p {
      font-size: 14px;
      color: #666;
      margin: 0;
      line-height: 1.5;
    }

    /* Affiliate note */
    .affiliate-note {
      background: #f7f7f5;
      border-radius: 8px;
      padding: 1rem 1.25rem;
      border-left: 3px solid #ccc;
      margin-top: 1.25rem;
    }
    .affiliate-note p {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin: 0;
    }

    /* CTA */
    .cta-block {
      background: #EEEDFE;
      border-radius: 16px;
      padding: 2.5rem 2rem;
      margin-top: 1.25rem;
      text-align: center;
    }
    .cta-block h3 {
      font-size: 22px;
      font-weight: 600;
      color: #26215C;
      margin-bottom: 0.6rem;
    }
    .cta-block p {
      color: #534AB7;
      font-size: 16px;
      margin-bottom: 1.5rem;
    }
    .cta-btn {
      display: inline-block;
      background: #534AB7;
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      padding: 12px 32px;
      border-radius: 99px;
      text-decoration: none;
      transition: background 0.15s;
    }
    .cta-btn:hover { background: #3C3489; }
    .page {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 1.5rem 4rem;
    }

.hero2 {
  background-image: url('https://smoothiecraft.com/wp-content/uploads/2026/04/hero-bg-6.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-bottom:2px solid #ddd;
}

.hero3 {
  background-image: url('https://smoothiecraft.com/wp-content/uploads/2026/04/newsletter-bg.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
	color:#fff;
}


.hero4 {
  background-image: url('https://starterkithub.com/wp-content/uploads/2026/04/starterkits-bg-6.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-top:1px solid #ddd;
  border-bottom:1px solid #ddd;
	padding-bottom:60px;
}

.herocategory
{
	background-color:#061830;
	background-image:url('https://smoothiecraft.com/wp-content/uploads/2026/04/smoothiecraft-home-bg-2.png');
	background-size:cover;
	background-position:center;
	background-repeat:no-repeat;
}
.glow-text {
  color: #0f172a;
  background-color:#f2f2f2;
  padding:10px;
  border-radius:5px;
  display:inline-block;
}

.wp-block-separator  {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, #d4d4d4, transparent);
  margin: 2.5rem 0;
}
summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::marker {
  display: none;
}




.kits-pagination .page-numbers {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* works whether it's li OR direct links */
.kits-pagination .page-numbers li,
.kits-pagination .page-numbers a,
.kits-pagination .page-numbers span {
  display: inline-flex;
}

.kits-pagination a,
.kits-pagination span {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: white;
  color: #374151;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.kits-pagination a:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.kits-pagination .current {
  background: #ddd;
  color: black;
}