/* Reset */
* {
    /* margin: 0; */
    padding: 0;
    box-sizing: border-box;
}


@font-face {
    font-family: 'Open Sans';
    src: url('/fonts/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sans';
  src: url('/fonts/OpenSans-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Accessibility utility for SEO/semantics without layout impact */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-intro {
  margin: 10px 0;
}

.home-container .page-intro {
  width: calc(100% - 10px);
  max-width: 1190px;
  margin: 10px auto;
}

.home-container {
  margin-top: 16px;
}

.page-intro-title {
  font-size: 1.05rem;
  line-height: 1.25;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.home-search-form {
  width: 100%;
  max-width: 100%;
  margin: 8px 0 0;
}

.page-intro-subtitle {
  margin: 0;
  font-size: 0.88rem;
  color: #5f6b7a;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    background: linear-gradient(180deg, #fafafa 0%, #f2f2f2 100%);
}

/* Header */
.header {
    background: linear-gradient(135deg, #ff8a1f 0%, #ffb347 45%, #ffcf70 100%);
    color: #fff;
    padding: 16px 20px;
    border-bottom: 3px solid #C5C5C5;
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.35), 0 8px 24px rgba(255, 153, 51, 0.25);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
}

.logo-image {
    display: block;
    width: auto;
    height: 46px;
    max-width: min(110px, 24vw);
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.25);
}

.header-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.22), 0 2px 6px rgba(0, 0, 0, 0.22);
}

.header-tagline {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-pill {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #fff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 700px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .logo-image {
        height: 40px;
        max-width: min(96px, 26vw);
    }
    .logo-text {
        font-size: 24px;
    }
    .header-meta {
        flex-wrap: wrap;
    }
}

/* Main Content */
.container, .site-container {
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    margin-top: 30px;
    padding: 0px 40px;
}

.container.home-container {
    margin-top: 8px;
}

.site-content-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}
.site-content {
    background: #f2f2f2;
    padding: 18px 20px;
    margin: 28px auto 20px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
  }
  
  .site-content h2 {
    font-size: 24px;
    color: #333;
    margin-top: 0px;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  
  .site-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin: 0;
    max-width: 980px;
  }

  .site-content p + p,
  .site-content ul + p,
  .site-content p + ul {
    margin-top: 10px;
  }

  .site-content--methodology p {
    font-size: 14px;
    line-height: 1.6;
  }

  .site-content--methodology h2 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .site-content--methodology {
    background: #f7f7f7;
    padding: 8px 10px;
    margin-top: 24px;
    margin-bottom: 16px;
    max-width: 1100px;
  }

  .site-content--summary {
    background: #f8f8f8;
    max-width: 1100px;
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .site-content--editorial {
    background: #f7f7f7;
    max-width: 1100px;
    margin-top: 18px;
    margin-bottom: 16px;
    padding: 10px 12px;
  }

  .site-content--editorial h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .site-content--editorial p {
    font-size: 13px;
    line-height: 1.6;
  }

  .site-content--editorial p + p {
    margin-top: 8px;
  }

  .site-content--summary h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .site-content--summary h3 {
    font-size: 16px;
    margin: 0 0 8px;
    text-transform: uppercase;
    color: #333;
  }

  .site-content--summary p,
  .site-content--summary li {
    font-size: 14px;
    line-height: 1.6;
  }

  .site-content--comparison {
    background: #f7f7f7;
    max-width: 1100px;
    margin-top: 18px;
    margin-bottom: 16px;
    padding: 10px 12px;
  }

  .site-content--comparison h2 {
    font-size: 18px;
    margin-bottom: 7px;
  }

  .site-content--comparison p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .comparison-table-wrap {
    overflow-x: auto;
  }

  .comparison-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
    font-size: 13px;
    line-height: 1.45;
    background: #fff;
  }

  .comparison-table th,
  .comparison-table td {
    border: 1px solid #d8d8d8;
    padding: 9px 10px;
    text-align: left;
    vertical-align: top;
  }

  .comparison-table thead th {
    background: #e9e9e9;
    color: #222;
    font-weight: 700;
  }

  .comparison-table tbody th {
    width: 140px;
    background: #fbfbfb;
  }

  .comparison-table a {
    color: #4c168b;
    font-weight: 700;
    text-decoration: none;
  }

  .review-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 14px;
  }

  .review-points__col ul {
    margin: 0 0 0 18px;
    padding: 0;
  }

  .review-points__col li + li {
    margin-top: 6px;
  }

  @media (max-width: 700px) {
    .review-points {
      grid-template-columns: 1fr;
      gap: 12px;
    }
  }
  
  .site-content ul {
    /* list-style: none; */
    margin-left: 20px;
    max-width: 980px;
  }


.divider {
    border-top: 1px solid #C5C5C5;
    margin: 0px 20px;
    margin-top: 10px;
}

.category h2 {
    font-size: 26px;
    margin-bottom: 20px;
}

.cam-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cam-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: calc(33.333% - 13px);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.cam-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.cam-details {
    padding: 15px;
}

.cam-link {
    display: block;
    font-size: 14px;
    color: #ff6600;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 10px;
}

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

.cam-desc {
    font-size: 14px;
    color: #555;
}

.category-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}



.category-row {
    column-count: 4;
    column-gap: 0px;
    /* row-gap: 5px; */
    display: block;
    /* padding-bottom: 10px; */
    /* display: grid; */
    /* grid-template-columns: repeat(4, 1fr); */
    /* grid-auto-rows: masonry;  */
  }

  .card-wrapper {
    break-inside: avoid;
    padding: 2.5px; 
  }

  .card-wrapper--full {
    width: 100%;
    padding: 2.5px;
    margin-top: 6px;
  }
  
  .category-card {
    break-inside: avoid;
    /* margin-bottom: 5px; */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    transition: box-shadow 0.3s ease;
    border: 3px solid #C5C5C5;
    width: 100%;
    /* display: inline-block; */
  }

  /* .category-row > .category-card {
    float: none; 
  } */

.category-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.category-header h2 {
    font-size: 16px;
    /* display: flex; */
    font-weight: 500;
    align-items: center;
    text-align: center;
    margin: 0 0 5px;
    color: #333;
}

.category-header a {
  font-weight: 500;
  align-items: center;
  text-align: center;
  color: #333;
  text-decoration: none;
}


.site-card {
    max-width: 340px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    /* padding: 10px; */
    transition: box-shadow 0.3s ease;
    border: 3px solid #C5C5C5;
}

.site-header {
    background-color: #f3f3f3;
    padding: 10px;
}

.address-bar {
    background-color: white;
    border: 1px solid #C5C5C5;
    border-radius: 2px;
    font-size: 14px;
}


.address-bar {
    position: relative;
    cursor: pointer;
    background-color: white;
    border: 1px solid #C5C5C5;
    border-radius: 4px;
    padding: 1px 10px; /* space for the lock */
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 40px; */
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}

.address-bar .site-icon, .related-site-name .site-icon, .site-item .site-icon {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

  .icon-svg {
    width: 16px;
    height: 16px;
    fill: #555;
    transition: fill 0.2s;
  }
  
  .icon-link:hover .icon-svg {
    fill: #ff9933;
  }

  
  .site-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    padding-right: 10px;
    transition: color 0.2s ease;
    flex-grow: 1;
  }

  
  
  .icon-link {
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
  }
  
  .icon-link .icon-svg {
    width: 16px;
    height: 16px;
    fill: #C5C5C5;
    transition: fill 0.2s;
  }
  
  .icon-link:hover .icon-svg {
    fill: #ff9933;
  }
  


.address-bar span {
    font-family: 'Segoe UI', sans-serif;
    color: #333;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
}

.address-bar svg {
    position: absolute;
    right: 5px;
    width: 14px;
    height: 14px;
    fill: #28a745;
}

.address-bar-link {
    text-decoration: none;
    display: block;
  }



  .site-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
  }

.site-media-column {
    flex: 0 0 340px;
    width: 340px;
    max-width: 100%;
}

.site-description {
    padding: 0 0px;
}
.site-description h2 {
    margin-top: -5px;
}

.site-card {
    flex: 1 1 340px;
  }
  
  .site-description {
    font-size: 14px;
    height: 400px;
    flex: 1 1 300px;
    overflow: hidden;
    overflow-y: scroll;
  }

.related-sites {
    margin-top: 30px;
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 1200px;
    padding: 5px;
}
.related-sites h2 {
    text-transform: uppercase;
    margin-bottom: 10px;
}
.related-sites h3 {
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}
  
  @media (max-width: 768px) {
    .site-wrapper {
      flex-direction: column;
    }
  }


.screen-shot {
    display: flex;
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #eef2f7;
    overflow: hidden;
}
.screen-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 0px;
    display: block;
}
.screen-shot-link {
    display: flex;
    width: 100%;
    height: 100%;
}

.site-rating-text {
    margin: 8px 0 0;
    text-align: center;
    color: #1f2937;
}

.site-updated-text {
    margin-top: 4px;
    font-size: 12px;
    color: #5f6b7a;
}

.site-updated-text .site-rating-label,
.site-updated-text .site-rating-scale {
    font-size: 12px;
    color: #5f6b7a;
}

.site-rating-label {
    font-size: 12px;
    font-weight: 700;
    color: #5f6b7a;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.site-rating-value {
    font-size: 14px;
    font-weight: 800;
    color: #ff8a1f;
    line-height: inherit;
}

.site-rating-scale {
    font-size: 12px;
    font-weight: 600;
    color: #5f6b7a;
}

.category-footer {
    /* margin-top: 5px; */
    text-align: center;
    font-size: 14px;
    width: 100%;
}
.category-footer a {
    color: white;
    display: flex;
    justify-content: center;  
    align-items: center;
    width: 100%;
    background-color: #28a745;
    padding: 5px;
    text-align: center;
    margin: auto;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
}
.btn-with-arrow {
    display: inline-flex;
    align-items: center;
    align-items: center;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
  }
  .btn-with-arrow svg {
    transition: transform 0.2s ease;
    margin-left: 5px;
    top: 3px;
    /* transform: translateY(1px); */
  }
  .btn-with-arrow:hover svg {
    transform: translateX(6px);
  }
  

.category-icon {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.category-content {
    border-top: 3px solid #eee;
    padding-top: 5px;
}

.category-description {
    margin: 0;
    font-size: 12px;
    color: #666;
    margin-bottom: 5px;
    text-align: center;
}

.site-list {
    list-style: none;
    font-size: 14px;
    counter-reset: item;
    margin: 0px;
    margin-bottom: 5px;
    padding-left: 10px;
    color: #C5C5C5;
}

.site-item {
    counter-increment: item;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    color: #C5C5C5;
}

.site-item::before {
    content: counter(item) ".";
    display: inline-block;
    /* width: 1.5em; */
    text-align: right;
    margin-right: 5px;
    font-size: 0.8em;
    color: black;
    color: #C5C5C5;
    transform: translateY(1px); /* lift the number slightly */
}

.top-reviews-card {
    max-width: 1195px;
    margin: 0 auto;
    background: linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%);
}

.top-reviews-card .category-content {
    padding-top: 8px;
}

.top-reviews-card .category-header {
    margin: -10px -10px 0;
    padding: 10px 10px 8px;
    background: linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
    border-bottom: 1px solid #e5e5e5;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
}

.top-reviews-card .category-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0;
}

.top-reviews-kicker {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(255, 138, 31, 0.12);
    border: 1px solid rgba(255, 138, 31, 0.28);
    color: #d96d0a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    top: 1px;
}

.top-reviews-card .category-description {
    max-width: 780px;
    margin: 2px auto 10px;
}

.guides-card .top-reviews-list {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.guide-hero {
    max-width: 1100px;
    margin: 0 auto 18px;
    background: #f8f8f8;
    border: 3px solid #c5c5c5;
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.guide-hero-head p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.guide-meta {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #6b7280;
}

.guide-kicker {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 600;
    color: #d96d0a;
}

.guide-section {
    max-width: 1100px;
    margin-top: 0;
    margin-bottom: 16px;
}

.guide-section p + p {
    margin-top: 10px;
}

.guide-links-card {
    max-width: 1100px;
    margin: 10px auto 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 10px;
    border: 3px solid #C5C5C5;
}

.related-reading-card {
    max-width: 1190px;
    margin-top: 14px;
    margin-bottom: 20px;
    background: #fcfcfc;
    padding: 8px;
}

.related-reading-card .category-header h2 {
    font-size: 15px;
}

.related-reading-card .guide-links-list {
    max-width: 100%;
}

.guide-takeaways-card {
    margin-top: 0;
    margin-bottom: 16px;
    background: #fcfcfc;
}

.guide-takeaways-list {
    margin: 0 auto;
    max-width: 860px;
    padding-left: 20px;
    color: #555;
}

.guide-takeaways-list li {
    font-size: 14px;
    line-height: 1.65;
}

.guide-takeaways-list li + li {
    margin-top: 8px;
}

.guide-links-list {
    grid-template-columns: 1fr;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.top-reviews-list {
    padding-left: 0;
    margin-bottom: 8px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 2px;
}

.top-reviews-list .site-item {
    min-height: 32px;
}

.top-reviews-list .site-link {
    padding-right: 0;
}

.top-reviews-list .icon-link {
    padding-right: 0;
}

.ncl-models-card .category-content {
    padding-top: 10px;
}

.ncl-model-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
}

.ncl-model-card {
    display: block;
    color: #333;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e4e4e4;
    border-radius: 6px;
    overflow: hidden;
}

.ncl-model-card:hover {
    text-decoration: none;
    border-color: #c5c5c5;
}

.ncl-model-thumb {
    display: block;
    position: relative;
    aspect-ratio: 16 / 9;
    background: #eee;
    overflow: hidden;
}

.ncl-model-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ncl-model-rank {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.ncl-model-name,
.ncl-model-meta {
    display: block;
    padding: 0 7px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ncl-model-name {
    padding-top: 6px;
    font-size: 13px;
    font-weight: 700;
}

.ncl-model-meta {
    padding-bottom: 7px;
    color: #666;
    font-size: 11px;
}

.ncl-home-bbw-feature {
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 12px;
    background: #fff;
    border: 3px solid #c5c5c5;
    border-radius: 10px;
    color: #222;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ncl-home-bbw-feature:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.ncl-home-bbw-image {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 6px;
    background: #f2f2f2;
}

.ncl-home-bbw-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ncl-home-bbw-copy {
    display: grid;
    gap: 3px;
    min-width: 0;
}

.ncl-home-bbw-kicker {
    color: #8a2f5d;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ncl-home-bbw-title {
    color: #1f2937;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.15;
}

.ncl-home-bbw-text {
    color: #555;
    font-size: 14px;
    line-height: 1.45;
}

.ncl-home-bbw-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 6px;
    background: #28a745;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.ncl-home-bbw-cta svg {
    flex: 0 0 auto;
}

.ncl-bbw-page {
    padding-bottom: 20px;
}

.ncl-bbw-hero {
    min-height: 330px;
    margin: 18px 0 0;
    display: flex;
    align-items: flex-end;
    background-image: linear-gradient(90deg, rgba(35, 19, 33, 0.86), rgba(35, 19, 33, 0.56), rgba(35, 19, 33, 0.08)), var(--bbw-hero-image);
    background-size: cover;
    background-position: center top;
    color: #fff;
}

.ncl-bbw-hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 46px 40px;
}

.ncl-bbw-kicker {
    margin: 0 0 8px;
    color: #ffd27a;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.ncl-bbw-hero h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.08;
}

.ncl-bbw-hero-inner > p:not(.ncl-bbw-kicker) {
    max-width: 620px;
    margin: 10px 0 0;
    font-size: 17px;
    line-height: 1.55;
}

.ncl-bbw-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.ncl-bbw-hero-stats span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 6px;
    background: rgba(0, 0, 0, 0.24);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.ncl-bbw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.ncl-bbw-primary-link,
.ncl-bbw-secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
}

.ncl-bbw-primary-link {
    background: #28a745;
    color: #fff;
}

.ncl-bbw-secondary-link {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #fff;
}

.ncl-bbw-shortlinks-wrapper {
    position: relative;
    z-index: 2;
}

.ncl-bbw-shortlinks {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    margin: 12px auto 18px;
    padding: 12px;
    border: 1px solid #d5d5d5;
}

.ncl-bbw-shortlinks-title {
    margin: 0;
    color: #333;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.ncl-bbw-intro h2,
.ncl-bbw-chooser h2,
.ncl-bbw-discussion h2,
.ncl-bbw-live-section h2,
.ncl-bbw-site-cards h2,
.ncl-bbw-spend-note h2,
.ncl-bbw-related h2,
.ncl-bbw-faq h2 {
    font-size: 22px;
}

.ncl-bbw-choice-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.ncl-bbw-choice-list li {
    padding: 10px 12px;
    border-left: 4px solid #28a745;
    background: #f7f8fa;
    color: #4b5563;
    font-size: 14px;
    line-height: 1.45;
}

.ncl-bbw-choice-list strong {
    color: #1f2937;
}

.ncl-bbw-discussion-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0;
}

.ncl-bbw-discussion-grid article {
    padding: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
}

.ncl-bbw-discussion-grid h3 {
    margin: 0 0 6px;
    color: #1f2937;
    font-size: 15px;
    line-height: 1.25;
}

.ncl-bbw-discussion-grid p {
    margin: 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.55;
}

.ncl-bbw-comparison {
    max-width: 100%;
    margin-top: 28px;
    margin-bottom: 20px;
}

.ncl-bbw-comparison .comparison-table th:nth-child(2),
.ncl-bbw-comparison .comparison-table td:nth-child(2) {
    text-align: center;
    white-space: nowrap;
}

.ncl-bbw-review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.ncl-bbw-review-grid--shortlinks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
}

.ncl-bbw-review-card {
    display: grid;
    grid-template-columns: 30px 42px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    min-width: 0;
    padding: 10px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.ncl-bbw-review-grid--shortlinks .ncl-bbw-review-card {
    grid-template-columns: 24px 28px minmax(0, 1fr);
    gap: 6px;
    padding: 8px;
    background: #fff;
    border-color: #d6d6d6;
    box-shadow: none;
}

.ncl-bbw-review-grid--shortlinks .ncl-bbw-review-card > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}

.ncl-bbw-review-grid--shortlinks .ncl-bbw-rank {
    width: 24px;
    height: 24px;
    font-size: 11px;
}

.ncl-bbw-review-grid--shortlinks .ncl-bbw-review-card img {
    width: 28px;
    height: 28px;
}

.ncl-bbw-review-grid--shortlinks .ncl-bbw-review-title {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.ncl-bbw-review-grid--shortlinks .ncl-bbw-review-card p,
.ncl-bbw-review-grid--shortlinks .ncl-bbw-review-meta {
    display: none;
}

.ncl-bbw-review-grid--shortlinks .ncl-bbw-review-button {
    max-width: 100%;
    min-height: 0;
    margin-top: 0;
    padding: 0;
    background: transparent;
    color: #1f8f3d;
    font-size: 10px;
    line-height: 1.1;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: left;
}

.ncl-bbw-review-card:hover {
    transform: translateY(-1px);
    border-color: #28a745;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.ncl-bbw-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #251326;
    color: #ffd27a;
    font-size: 12px;
    font-weight: 900;
}

.ncl-bbw-review-card img {
    width: 42px;
    height: 42px;
    object-fit: contain;
}

.ncl-bbw-review-title {
    display: block;
    margin: 0;
    color: #1f2937;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
}

.ncl-bbw-review-card p {
    margin: 2px 0 0;
    color: #5f6b7a;
    font-size: 12px;
    line-height: 1.35;
}

.ncl-bbw-review-meta {
    display: block;
    margin-top: 2px;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.35;
}

.ncl-bbw-review-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    margin-top: 7px;
    padding: 5px 9px;
    border-radius: 6px;
    background: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.ncl-bbw-live-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.ncl-bbw-card-note {
    margin: 4px 0 10px;
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.4;
}

.ncl-bbw-live-count {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 28px;
    margin: 4px 0 0;
    padding: 4px 8px;
    border-radius: 4px;
    background: #eef8f1;
    color: #166534;
    font-size: 12px;
    font-weight: 800;
}

.ncl-bbw-live-count a {
    color: #166534;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ncl-bbw-live-card {
    display: block;
    overflow: hidden;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    color: #222;
    text-decoration: none;
}

.ncl-bbw-live-card:hover .ncl-bbw-live-name {
    text-decoration: underline;
}

.ncl-bbw-thumb {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    background: #eef2f7;
    overflow: hidden;
}

.ncl-bbw-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ncl-bbw-live-badge {
    position: absolute;
    top: 7px;
    left: 7px;
    padding: 2px 6px;
    border-radius: 4px;
    background: #28a745;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.ncl-bbw-live-body {
    display: grid;
    gap: 3px;
    padding: 8px;
}

.ncl-bbw-live-name {
    overflow: hidden;
    color: #1f2937;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ncl-bbw-live-source,
.ncl-bbw-live-meta {
    overflow: hidden;
    color: #5f6b7a;
    font-size: 11px;
    line-height: 1.3;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.ncl-bbw-empty {
    margin-top: 10px;
    padding: 12px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    background: #fff;
    color: #5f6b7a;
    font-size: 14px;
}

.ncl-bbw-empty a {
    color: #166534;
    font-weight: 800;
}

.ncl-bbw-spend-note {
    border-left: 4px solid #28a745;
    border-radius: 0 8px 8px 0;
}

.ncl-bbw-spend-note p {
    margin-bottom: 0;
}

.ncl-bbw-related-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ncl-bbw-related-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 10px;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    background: #fff;
    color: #1f2937;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.ncl-bbw-related-links a:hover {
    border-color: #28a745;
    color: #166534;
}

.ncl-bbw-faq h3 {
    margin: 14px 0 4px;
    color: #1f2937;
    font-size: 16px;
}

.ncl-bbw-faq p {
    margin-top: 0;
}

@media (max-width: 1099px) {
    .ncl-bbw-shortlinks {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .ncl-bbw-shortlinks-title {
        white-space: normal;
    }

    .ncl-bbw-review-grid--shortlinks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .top-reviews-card .category-header h2 {
        flex-direction: column;
        gap: 4px;
    }

    .top-reviews-list {
        grid-template-columns: 1fr;
    }

    .ncl-model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ncl-home-bbw-feature {
        grid-template-columns: 1fr;
    }

    .ncl-home-bbw-cta {
        width: 100%;
    }

    .ncl-bbw-hero {
        min-height: 0;
        background-image: linear-gradient(180deg, rgba(35, 19, 33, 0.44), rgba(35, 19, 33, 0.9)), var(--bbw-hero-image);
    }

    .ncl-bbw-hero-inner {
        padding: 34px 20px;
    }

    .ncl-bbw-hero h1 {
        font-size: 34px;
    }

    .ncl-bbw-choice-list,
    .ncl-bbw-discussion-grid,
    .ncl-bbw-live-grid,
    .ncl-bbw-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ncl-bbw-shortlinks {
        grid-template-columns: 1fr;
        margin-top: 10px;
    }

    .ncl-bbw-shortlinks-title {
        white-space: normal;
    }

    .ncl-bbw-review-grid--shortlinks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .ncl-bbw-review-grid--shortlinks {
        grid-template-columns: 1fr;
    }
}



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



.breadcrumb-container {
    font-size: 14px;
    font-weight: 500;
    color: #888;
    margin: 20px 20px 10px 20px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  .breadcrumb-label {
    overflow: hidden;
    text-wrap: nowrap;
    text-overflow: ellipsis;
  }
  .breadcrumb-container svg {
    position: relative;
    width: 16px;
    height: 16px;
    fill: #808080;
    margin-right: 3px;
    vertical-align: baseline;
    top: 2px;
  }

  
  .breadcrumb-link {
    text-decoration: none;
    color: #808080;
    transition: color 0.2s ease;
  }
  
  .breadcrumb-link:hover {
    color: black;
  }

  .breadcrumb-link:hover svg {
    fill: black;
  }
  
  .breadcrumb-separator {
    margin: 0 8px;
    color: #999999;
    user-select: none;
  }
  
  .breadcrumb-current {
    color: #4169E1;
    font-weight: 600;
  }
  
  .breadcrumb-current svg {
    fill: #4169E1;
  }
  .breadcrumb-current:hover svg {
    fill: #4169E1;
  }

.main-text {
    margin-left: 20px;
    margin-bottom: 20px;
}
.main-text h1 {
    text-transform: uppercase;
    /* margin-left: 20px; */
    margin-top: 5px;
    margin-bottom: 0px;
}

.heading-with-badge {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .rank-badge {
    margin-right: 3px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: #ff9933; /* Match your header color */
    color: white;
    font-weight: 500;
    border-radius: 50%;
    font-size: 16px;
    flex-shrink: 0;
    position: relative;
    border: 1px solid #C5C5C5;
    top: 2px;
  }
  


















  

/* Footer */
.footer {
    margin-top: 28px;
    padding: 28px 20px 22px;
    border-top: 1px solid #d1d5db;
    background: #f7f7f7;
    color: #4b5563;
    font-size: 14px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(240px, 1fr) minmax(0, 1.8fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-brand {
    max-width: 340px;
}

.footer-brand-link {
    display: inline-flex;
    color: #1f2937;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: uppercase;
}

.footer-brand p {
    margin: 7px 0 0;
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.5;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
}

.footer-link-group-title {
    color: #ff8a1f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.footer a {
    color: #374151;
    text-decoration: none;
    font-weight: 700;
}

.footer-link-group a {
    display: inline;
    align-self: flex-start;
    color: #374151;
    font-size: 13px;
    line-height: 1.35;
}

.footer a:hover {
    color: #1f8f3d;
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    max-width: 1100px;
    margin: 22px auto 0;
    padding-top: 14px;
    border-top: 1px solid #d8d8d8;
    color: #6b7280;
    font-size: 12px;
}

@media (max-width: 600px) {
    .footer {
        padding: 24px 16px 20px;
    }

    .footer-inner,
    .footer-nav {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        gap: 22px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
}

/* .related-sites {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
  } */
  

  
  /* .related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    max-width: 1200px;
    margin: 0 auto;
  } */

  .related-grid {
      display: grid;
      grid-gap: 5px;
      grid-template-columns: repeat(4, 1fr);
  }


  
  .related-card {
    /* width: calc(25% - 5px); */
    background: #fff;
    border: 2px solid #C5C5C5;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s ease;
  }
  
  .related-card:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .related-card img {
    width: 100%;
    display: block;
    height: auto;
  }
  
  .related-site-name {
    display: flex;
    padding: 5px;
    text-align: center;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    align-items: center;
  }
  .related-site-header {
    display: block;
    padding: 5px;
    font-weight: 500;
    font-size: 16px;
    color: #333;
    text-align: center;
    text-transform: uppercase;
  }

  .related-card a {
    text-decoration: none;
  }


/* =============== */
.contact-box {
    max-width: 600px;
    margin: 30px auto;
    padding: 20px 20px 25px;
    background: #f2f2f2;
    border-radius: 10px;
    border: 3px solid #C5C5C5;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* HEADING */
.contact-box h2 {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 15px;
    text-align: center;
}

/* FORM LAYOUT */
#contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* LABELS */
#contact-form label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 4px;
}

/* INPUTS & TEXTAREA */
#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    border: 1px solid #C5C5C5;
    border-radius: 6px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
    color: #999;
}

/* FOCUS STATES */
#contact-form input[type="text"]:focus,
#contact-form input[type="email"]:focus,
#contact-form textarea:focus {
    outline: none;
    border-color: #ff9933;
    box-shadow: 0 0 0 2px rgba(255,153,51,0.15);
    background-color: #fff;
}

/* TEXTAREA SPECIFICS */
#contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* CLOUDFLARE TURNSTILE WRAPPER (OPTIONAL EXTRA POLISH) */
/* .contact-box .cf-turnstile {
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* SUBMIT BUTTON (btn button) */
#contact-form .btn.button {
    width: 100%;
    border: none;
    border-radius: 8px;
    background-color: #28a745;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
    line-height: 50px; /* matches your inline height:50px */
}

#contact-form .btn.button:hover {
    background-color: #218838;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#contact-form .btn.button:active {
    transform: translateY(1px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

#contact-form .btn.button:disabled {
    background-color: #C5C5C5;
    cursor: not-allowed;
    box-shadow: none;
}

/* SUCCESS / ERROR MESSAGE AREA (WHEN $posted == true) */
.contact-box p,
.contact-box .message,
.contact-box .notice {
    font-size: 14px;
    color: #555;
    margin: 0;
    text-align: center;
}

.not-found-links {
    display: grid;
    gap: 10px;
}

.not-found-links a {
    display: block;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #c5c5c5;
    background: #2c3440;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
}

.not-found-links a:hover {
    background: #ff9933;
    border-color: #e68821;
    color: #ffffff;
}

.search-hero {
    width: calc(100% - 10px);
    max-width: 1190px;
    margin: 14px auto 10px;
    padding: 12px;
    border-radius: 10px;
    border: 2px solid #c5c5c5;
    background:
      linear-gradient(135deg, rgba(255, 153, 51, 0.12) 0%, rgba(255, 179, 71, 0.08) 45%, rgba(255, 255, 255, 0.85) 100%),
      #f2f2f2;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.search-hero-head h2 {
    margin: 0 0 4px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #222;
}

.search-hero-head p {
    margin: 0 0 10px;
    color: #5f6b7a;
    font-size: 13px;
    line-height: 1.4;
}

.search-form-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    align-items: center;
}

.search-form-panel input[type="text"] {
    width: 100%;
    height: 32px;
    padding: 0 12px;
    border-radius: 8px;
    border: 1px solid #c5c5c5;
    background: #fff;
    color: #333;
    font-size: 14px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}

.search-form-panel input[type="text"]:focus {
    outline: none;
    border-color: #ff9933;
    box-shadow: 0 0 0 3px rgba(255,153,51,0.14);
}

.search-form-panel button {
    height: 32px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, #28a745 0%, #34c759 100%);
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(40, 167, 69, 0.28);
}

.search-form-panel button:hover {
    filter: brightness(0.97);
}

.search-results-meta {
    margin-top: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(197, 197, 197, 0.75);
    color: #444;
    font-size: 13px;
}

.search-results-meta strong {
    color: #1f2937;
}

.search-empty-state {
    max-width: 900px;
    margin: 10px auto 0;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid #c5c5c5;
    background: #f2f2f2;
    color: #555;
    text-align: center;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .contact-box {
        margin: 0px auto;
        padding: 15px;
        border-radius: 8px;
    }
    .search-hero {
        margin: 12px auto 10px;
        padding: 10px;
        border-radius: 8px;
    }
    .search-form-panel {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .search-form-panel button {
        width: 100%;
        height: 36px;
    }
    .search-form-panel input[type="text"] {
        height: 36px;
    }
}

@media (max-width: 480px) {
    .contact-box {
        margin: 0px;
    }
}
  
  @media (max-width: 992px) {
    /* .related-card {
      width: calc(33.333% - 13.33px);
    } */
    .related-grid {
      display: grid;
      grid-gap: 5px;
      grid-template-columns: repeat(3, 1fr);
  }
  }
  
  @media (max-width: 768px) {
    /* .related-card {
      width: calc(50% - 5px);
    } */
    .related-grid {
      display: grid;
      grid-gap: 5px;
      grid-template-columns: repeat(2, 1fr);
  }
    .container, .site-container {
        padding: 0px 20px;
    }
    .site-content-wrapper {
        padding: 0 20px;
    }
    .site-content {
        padding: 14px 14px;
        margin-top: 22px;
    }
    .site-content h2 {
        font-size: 20px;
    }
    .site-content p {
        font-size: 15px;
        line-height: 1.65;
    }
    .site-card {
        max-width: 100%;
        margin: 0 auto;
    }
    .category-row {
        flex-direction: column;
    }
    .cam-item {
        width: 48%;
    }
  }
  
  @media (max-width: 992px) {
    .category-row {
      column-count: 3;
    }
  }
  @media (max-width: 730px) {
    .category-row {
      column-count: 2;
    }
  }
  
  
  @media (max-width: 600px) {
    .category-row {
      column-count: 1;
    }
  }
  



@media (max-width: 480px) {
    .cam-item {
        width: 100%;
    }

    .ncl-bbw-choice-list,
    .ncl-bbw-discussion-grid,
    .ncl-bbw-live-grid,
    .ncl-bbw-review-grid {
        grid-template-columns: 1fr;
    }
}
