/* === Travel Comparison Widget === */
.responsive-comparison-table {
    background-color: #fff;
    background-color: hsla(0, 0%, 52%, 0) !important;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 8px;
    width: 100%;
    overflow: hidden;
}

.responsive-comparison-table td,
.responsive-comparison-table th {
    border: 1px solid #e0e0e0;
    padding: 16px;
    text-align: left;
}

.responsive-comparison-table thead {
    background-color: #053a43;
    color: #fff;
}

.responsive-comparison-table thead th:first-child {
    border-top-left-radius: 8px;
}

.responsive-comparison-table thead th:last-child {
    border-top-right-radius: 8px;
}

.list {
    font-size: 14px;
    margin: 0;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .responsive-comparison-table thead {
        display: none;
    }

    .responsive-comparison-table tr {
        border: 1px solid #d1d1d1;
        border-radius: 11px;
        box-shadow: 0 1px 5px rgba(0, 0, 0, 0.06);
        display: block;
        margin-bottom: 1.5rem;
    }

    .responsive-comparison-table td {
        background-color: hsla(0, 0%, 52%, 0) !important;
        border: none;
        border-bottom: 1px solid #eee;
        display: grid;
        font-size: 14px;
        grid-template-columns: 140px 1fr;
        padding: 0;
    }

    .responsive-comparison-table td:before {
        background: #053a43;
        color: #fff;
        content: attr(data-label);
        font-weight: 700;
        padding: 12px;
    }

    .responsive-comparison-table .list {
        font-size: 14px;
        margin: 0;
        padding: 10px;
    }

    .responsive-comparison-table td:last-child {
        border-bottom: none;
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }

    .responsive-comparison-table td:first-child {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }

    .responsive-comparison-table td:first-child:before {
        border-top-left-radius: 10px;
    }

    .responsive-comparison-table td:last-child:before {
        border-bottom-left-radius: 10px;
    }
}

/* === Brand Card Widget === */
 .card-custom {
      border: none;
     
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      padding: 20px 40px;
      position: relative;
      background: #fff;
    }

    .card-custom-body {
      display: flex;
      align-items: center;
      justify-content: space-evenly;
      gap: 15px;
    }
.trust-score-card {
  max-width: 180px;
  margin: auto;
  background: #fff;
  padding: 12px 10px;
}
.trust-score-card h6 {
  color: #08323a;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
}
.trust-score-card p {
  font-size: 11px;
  line-height: 1.3;
  margin-bottom: 0;
}
.trustpilot-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.trustpilot-stars svg {
  display: block;
}
    .card-custom-rank {
      position: absolute;
      width: 42px;
      height: 42px;
      border: 2px solid #000;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 100%;
      color: #000;
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      left: -20px;
      top: 80px;
      background: #fff;
    }

    .badge-popular {
      background: #e9f3ff;
      color: #007bff;
      font-size: 12px;
      font-weight: 600;
      padding: 5px 10px;
      border-bottom-right-radius: 50px;
      border-top-right-radius: 50px;
      position: absolute;
      top: 15px;
      left: 0;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .brand-logo img {
      width: 140px;
      height: auto;
    }

    .brand-details {
      flex: 1;
    }

    .features-list {
      padding-left: 0;
      margin-bottom: 0;
    }

    .rating-box {
      text-align: right;
      display: flex;
      gap: 10px;
      align-items: center;
      position: relative;
     
    }

    .rating-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .rating-text {
      color: #053A43;
      font-size: 18px;
      font-weight: 500;
      letter-spacing: -1px;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .rating-text i {
      font-size: 12px;
      color: #053A43;
    }

    .rating-stars {
      color: #FFD700;
      font-size: 16px;
    }

    .rating-value {
      font-size: 20px;
      font-weight: 700;
      border-radius: 5px;
      background: #053A43;
      color: #fff;
      padding: 4px 10px;
      display: inline-block;
    }

    .rating-popup {
      display: none;
      position: absolute;
      top: 110%;
      right: 0;
      background: #fff;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      border-radius: 8px;
      padding: 10px 0;
      width: 260px;
      z-index: 999;
    }

    .rating-popup.active {
      display: block;
      animation: fadeIn 0.2s ease-in-out;
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-4px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .rating-popup-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 16px;
      border-bottom: 1px solid #f2f2f2;
    }

    .rating-popup-item:last-child {
      border-bottom: none;
    }

    .rating-popup-item .info {
      display: flex;
      flex-direction: column;
      font-size: 13px;
      color: #555;
    }

    .rating-popup-item .info strong {
      font-size: 14px;
      color: #053A43;
    }

    .rating-popup-score {
      background: #053A43;
      color: #fff;
      font-weight: 700;
      border-radius: 5px;
      padding: 4px 10px;
      font-size: 13px;
    }

    .visit-btn {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .btn-view {
      border-radius: 5px;
      background: #053A43;
      color: #fff;
      padding: 8px 16px;
      font-weight: 600;
      text-decoration: none;
    }

    .btn-view:hover {
      background: #0056b3;
      color: #fff;
    }

    .features-list {
      margin-top: 8px;
    }

    .features-list li {
  font-size: 14px;
  color: #666;
  list-style: none;
  padding-left: 22px;
  position: relative;
  margin-bottom: 5px;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
	color: #666;
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%666' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.trustpilot-section-divider {
  width: 1px;
  background: #E9E9E9;
  margin: 0 10px;
  align-self: stretch;
}



.trustpilot-title {
        color: #053A43;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 26px; /* 162.5% */
      }
    @media(max-width:768px) {
      .rating-box {
        text-align: left;
        margin-top: 15px;
      }
      .card-custom-body {
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        gap: 15px;
      }
      .trustpilot-section-divider{
        display: none;
      }

      .card-custom-header {
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        gap: 15px;
        border-bottom: 1px solid #f4f4f4;
        padding-bottom: 10px;
      }

      .badge-popular {
        top: 0;
        left: 0;
        padding: 5px 10px;
      }
      
      .card-custom {
        padding: 30px 25px;
      }
   

      .card-custom-rank {
        position: relative;
        width: 26px;
        height: 26px;
        border-width: 1px;
        top: unset;
        left: unset;
        font-size: 14px;
      }

      .rating-stars {
        font-size: 12px;
      }

      .rating-text {
        font-size: 12px;
      }

      .rating-value {
        font-size: 12px;
        padding: 6px 10px;
      }
    }

/* === Post Card Widget === */
 .post-card {
     border: none;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     /* padding: 20px 40px; */
     position: relative;
     background: #fff;
 }

 .post-card-body {
     display: flex;
     align-items: center;
     justify-content: space-evenly;
     gap: 15px;
 }

 .post-card-trustpilot {
     max-width: 180px;
     margin: auto;
     background: #fff;
     padding: 12px 10px;
 }

 .post-card-trustpilot h6 {
     color: #08323a;
     font-weight: 700;
     font-size: 14px;
     margin-bottom: 8px;
 }

 .post-card-trustpilot p {
     font-size: 11px;
     line-height: 1.3;
     margin-bottom: 0;
 }

 .post-card-trustpilot-stars {
     display: flex;
     justify-content: center;
     margin-bottom: 8px;
 }

 .post-card-trustpilot-stars svg {
     display: block;
 }

 .post-card-rank {
     /* position: absolute; */
     width: 34px;
     height: 34px;
     border: 1px solid #000;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 100%;
     color: #000;
     font-family: Inter, sans-serif;
     font-size: 16px;
     font-weight: 400;
     left: -20px;
     top: 80px;
     background: #fff;
 }

 .post-card-badge {
     background: #e9f3ff;
     color: #007bff;
     font-size: 12px;
     font-weight: 600;

     padding: 5px 10px;
     border-bottom-right-radius: 50px;
     border-top-right-radius: 50px;
     position: absolute;
     top: 15px;
     left: 0;
     display: inline-flex;
     align-items: center;
     gap: 5px;
 }

 .post-card-rank-box {
     border-radius: 10px 10px 0 0;
     background: #F2F2F2;
     padding: 10px 10px;
 }

 .post-card-logo img {
     width: 152px;
     height: auto;
 }
 .post-card-image img{
   width: 300px;
     height: auto;
     border-radius: 10px;
     border-radius: 10px;
     border-radius: 5%;
 }

 .post-card-details {
     flex: 1;
 }

 .post-card-details h2 a{ 
     color: #282828;
font-family: Inter;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 21px; /* 87.5% */
 }
 .post-card-features-list {
     padding-left: 0;
     margin-bottom: 0;
 }

 .post-card-rating-box {
     text-align: right;
     display: flex;
     gap: 10px;
     align-items: center;
     position: relative;

 }

 .post-card-rating-item {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .post-card-rating-text {
     color: #053A43;
     font-size: 18px;
     font-weight: 500;
     letter-spacing: -1px;
     display: flex;
     align-items: center;
     gap: 5px;
 }

 .post-card-rating-text i {
     font-size: 12px;
     color: #053A43;
 }
.post-reviewlink{
  color: #053A43;
font-family: Inter;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 21px; /* 131.25% */
letter-spacing: -1px;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
}
.post-card-middle{
     display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 10px;
    flex-direction: column;
    align-self: stretch;
}
 .post-card-rating-stars {
     color: #FFD700;
     font-size: 16px;
 }

 .post-card-rating-value {
     font-size: 20px;
     font-weight: 700;
     border-radius: 5px;
     background: #053A43;
     color: #fff;
     padding: 4px 10px;
     display: inline-block;
 }

 .post-card-rating-popup {
     display: none;
     position: absolute;
     top: 110%;
     right: 0;
     background: #fff;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
     border-radius: 8px;
     padding: 10px 0;
     width: 260px;
     z-index: 999;
 }

 .post-card-rating-popup.active {
     display: block;
     animation: postCardFadeIn 0.2s ease-in-out;
 }

 @keyframes postCardFadeIn {
     from {
         opacity: 0;
         transform: translateY(-4px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .post-card-rating-popup-item {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 8px 16px;
     border-bottom: 1px solid #f2f2f2;
 }

 .post-card-rating-popup-item:last-child {
     border-bottom: none;
 }

 .post-card-rating-popup-item .info {
     display: flex;
     flex-direction: column;
     font-size: 13px;
     color: #555;
 }

 .post-card-rating-popup-item .info strong {
     font-size: 14px;
     color: #053A43;
 }

 .post-card-rating-popup-score {
     background: #053A43;
     color: #fff;
     font-weight: 700;
     border-radius: 5px;
     padding: 4px 10px;
     font-size: 13px;
 }

 .post-card-visit-btn {
     display: flex;
    
 }

 .post-card-btn-primary {
     border-radius: 5px;
     background: #053A43;
     color: #fff;
     padding: 8px 16px;
     font-weight: 600;
     text-decoration: none;
 }

 .post-card-btn-primary:hover {
     background: #0056b3;
     color: #fff;
 }

 .post-card-features-list {
     margin-top: 8px;
 }

 .post-card-features-list li {
     font-size: 14px;
     color: #666;
     list-style: none;
     padding-left: 22px;
     position: relative;
     margin-bottom: 5px;
 }

 .post-card-features-list li::before {
     content: "";
     position: absolute;
     left: 0;
     top: 2px;
     color: #666;
     width: 14px;
     height: 14px;
     background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%666' viewBox='0 0 16 16'%3E%3Cpath d='M12.736 3.97a.733.733 0 0 1 1.047 0c.286.289.29.756.01 1.05L7.88 12.01a.733.733 0 0 1-1.065.02L3.217 8.384a.757.757 0 0 1 0-1.06.733.733 0 0 1 1.047 0l3.052 3.093 5.4-6.425z'/%3E%3C/svg%3E") no-repeat center;
     background-size: contain;
 }

 .post-card-divider {
     width: 1px;
     background: #E9E9E9;
     margin: 0 10px;
     align-self: stretch;
 }



 .post-card-trustpilot-title {
     color: #053A43;
     font-size: 16px;
     font-style: normal;
     font-weight: 600;
     line-height: 26px;
     /* 162.5% */
 }

 @media(max-width:768px) {
     .post-card-rating-box {
         text-align: left;
         margin-top: 15px;
     }

     .post-card-body {
         flex-direction: column;
         align-items: center;
         justify-content: space-evenly;
         gap: 15px;
     }

     .post-card-divider {
         display: none;
     }

     .post-card-header {
         display: flex;
         align-items: center;
         justify-content: space-evenly;
         gap: 15px;
         border-bottom: 1px solid #f4f4f4;
         padding-bottom: 10px;
     }

     .post-card-badge {
         top: 0;
         left: 0;
         padding: 5px 10px;
     }

     .post-card {
      
     }


     .post-card-rank {
         position: relative;
         width: 26px;
         height: 26px;
         border-width: 1px;
         top: unset;
         left: unset;
         font-size: 14px;
     }

     .post-card-rating-stars {
         font-size: 12px;
     }

     .post-card-rating-text {
         font-size: 12px;
     }

     .post-card-rating-value {
         font-size: 12px;
         padding: 6px 10px;
     }
 }

/* === FAQ Widget === */
.faq-section {
  /* Add any specific section styles if needed */
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 20px;
  margin-bottom: 0px;
}

.faq-heading {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.faq-title {
  font-size: 26px;
  font-weight: 700;
  color: #333;
}

.faq-subtitle {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
}

.faq-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  background: transparent;
}

.accordion {
  background: none;
}

.faq-accordion .accordion-button {
  background: none;
  box-shadow: none;
  color: #000;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 0;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #053A43;
  background: none;
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq-accordion .accordion-button::after {
  content: '\002B';
  font-size: 18px;
  background-image: none;
  font-weight: bold;
  color: #053A43;
  transform: none !important;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\2212';
  font-size: 20px;
  color: #053A43;
}

.faq-accordion .accordion-body {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  padding: 0 0 15px 0;
}

.faq-image {
  max-width: 200px;
  height: auto;
}

@media (max-width: 991px) {
  .faq-header {
    flex-direction: column;
  }

  .faq-image {
    margin-top: 25px;
    max-width: 150px;
  }
}

/* === GLP1 Mechanism Widget === */
.glp1-mechanism {
  /* Section spacing handled by py-4 */
}

.highlight-box {
  background: #fff5cc;
  border-radius: 6px;
  padding: 14px 18px;
}

.highlight-title {
  color: #000;
  font-weight: 700;
  font-size: 18px;
  display: flex;
  align-items: center;
}

.highlight-title i {
  color: #f5b800;
  font-size: 20px;
}

.glp1-text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 10px;
}

.glp1-text strong {
  font-weight: 600;
}

.glp1-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.glp1-list li {
  font-size: 15px;
  color: #333;
  margin-bottom: 8px;
  position: relative;
  padding-left: 0;
}

.glp1-list strong {
  color: #000;
  font-weight: 600;
}

@media (max-width: 768px) {
  .highlight-title {
    font-size: 16px;
  }
  
  .glp1-text,
  .glp1-list li {
    font-size: 14px;
  }
}

/* === Comparison Table Widget === */
:root {
  --bg: #ffffff;
  --fg: #0f172a;
  --muted: #64748b;
  --border: #e2e8f0;
  --accent: #0ea5e9;
  --row: #f5f5f5;
  --radius: 14px;
}

.wrap {
 
}

.heading {
  margin: 0 0 16px;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.sub {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.table-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.table-head{
	background:#053A43;
	
}
.table-head th{
	
	color:#fff;
}
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

caption {
  text-align: left;
  padding: 16px 20px;
  font-weight: 600;
 
  border-bottom: 1px solid var(--border);
}

thead th {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

tbody td {
  padding: 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

tbody tr:nth-child(even) td {
  background: var(--row);
}

tbody tr:last-child td {
  border-bottom: none;
}

.pill {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Responsive: stack rows to cards on small screens */
@media (max-width: 720px) {
  table, thead, tbody, th, td, tr { 
    display: block; 
  }
  
  thead { 
    display: none; 
  }

  caption {
    border-bottom: 0;
    padding-bottom: 8px;
  }

  tbody tr {
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 12px;
    overflow: hidden;
  }

  tbody td {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }

  tbody tr:last-child td:last-child {
    border-bottom: none;
  }

  tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--muted);
  }

  /* Make first column (Key Factor) look like a section header inside each card */
  tbody td[data-label="Key Factor"] {
    background: #f8fafc;
    font-weight: 700;
    grid-template-columns: 1fr;
  }
  
  tbody td[data-label="Key Factor"]::before {
    content: "Key Factor";
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 4px;
  }
}

/* === Compare Info Widget === */
.compare-section {
  /* background: #fff; */
  border: 1px solid rgb(248, 240, 241);
  border-radius: 20px;
       box-shadow: 0 10px 25px rgb(0 0 0 / 1%);
   padding: 40px 30px; 
  /* margin: 60px auto; */
  position: relative;
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #4b1cac;
  border-bottom: 2px solid #e8d0ff;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.compare-header i,
.compare-header svg {
  color: #d63384;
  font-size: 20px;
  width: 20px;
  height: 20px;
}

.info-cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.info-card {
  flex: 1;
  background: #f4f6ff;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  border: 1px solid #e0e0ff;
  min-width: 250px;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i,
.info-card svg {
  color: #7b2ff7;
  font-size: 22px;
  width: 22px;
  height: 22px;
  margin-bottom: 10px;
  display: block;
}

.info-card h6 {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.info-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.5;
}

.compare-content p {
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.highlight-line {
  border-left: 3px solid #8b5cf6;
  padding-left: 10px;
  margin-bottom: 15px;
}

.compare-content hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 20px 0;
}

.trusted {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.trusted span {
  color: #28a745;
  font-size: 10px;
  display: flex;
  align-items: center;
}

.trusted span i {
  font-size: 10px;
}

@media (max-width: 768px) {
  .info-cards {
    flex-direction: column;
  }

  .compare-section {
    padding: 30px 20px;
    margin: 30px auto;
  }

  .compare-header {
    font-size: 16px;
  }
}

/* === Rating Card Widget === */
.rc-rating-card {
  background-color: #FDF2BD;
  border-radius: 12px;
  border: none;
}

.rc-title {
  color: #282828;
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 21px;
}

.rc-inner-card {
  padding: 20px 0px;
}

.rc-label {
  color: #053A43;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 21px;
}

.rc-stars {
  color: #FFD700;
}

.rc-stars i {
  display: inline-block;
  margin-right: 2px;
}

.rc-score-box {
  background: #053A43;
  border-radius: 5px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rc-heading {
  color: #053A43;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}

.rc-text {
  color: #282828;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 23px;
}

.rc-number {
  color: #282828;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
}

.rc-divider {
  border: none;
  height: 1px;
  background-color: #b3a25a!important;
  margin-top: 10px;
  margin-bottom: 10px;
}

.rc-items-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
}

.rc-item-col {
  display: flex;
  flex-direction: column;
}
.rc-inner-card {
    min-height: 100px;
}

/* === Provider Cards Widget === */
.provider-cards-container {
    background-color: #fff;
    color: #000;
    font-family: 'Inter', sans-serif;
}

.provider-card {
    border-bottom: 1px solid #e5e5e5;
    padding: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
	
    flex-wrap: wrap;
}

.provider-card.flex-column {
    flex-direction: column;
    align-items: center;
}

.provider-card.flex-column .provider-info {
    margin-right: 0;
    margin-bottom: 1.5rem;
    text-align: center;
}

.provider-info {
    flex: 1;
    margin-right: 2rem;
}

.provider-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.provider-date {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.75rem;
}

.provider-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.75rem;
}

.provider-btn {
    background-color: #0b7d77;
    border: none;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.provider-btn:hover {
    background-color: #096963;
    color: #fff;
    text-decoration: none;
}

.provider-logo {
    margin-bottom: 0.5rem;
}

.provider-logo img {
    width: 140px;
    height: auto;
    object-fit: contain;
}

a.read-link {
    display: inline-block;
    color: #007bff;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

a.read-link:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .provider-card {
        flex-direction: column;
        align-items: center;
    }

    .provider-info {
        margin-right: 0;
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .provider-title {
        font-size: 1.25rem;
    }
}

/* === Ranked Services Widget === */
/* Ranked Services Widget - Static Styles */

.ranked-services-widget .rank-compare-section {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.ranked-services-widget .rank-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.ranked-services-widget .rank-compare-section h2 span {
  color: #f4d35e;
}

.ranked-services-widget .rank-category-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.ranked-services-widget .rank-category-card {
  background: #ffffff;
  color: #000;
  width: 140px;
  border-radius: 10px;
  padding: 20px 10px;
  text-align: center;
  cursor: pointer;
  transition: .3s;
}

.ranked-services-widget .rank-category-card.active {
  background:  #FFF1B2;
}

.ranked-services-widget .rank-category-card:hover { transform: translateY(-5px); }
.ranked-services-widget .rank-category-card i { font-size: 32px; color: #0d4037; margin-bottom: 10px; }
.ranked-services-widget .rank-category-card p { font-size: 13px; font-weight: 600; margin: 0; }

@media (max-width: 768px) {
  .ranked-services-widget .rank-category-icons { display: block; }
  .ranked-services-widget .rank-category-card { width: 100%; display: flex; justify-content: space-between; align-items: center; text-align: left; padding: 15px 20px; margin-bottom: 10px; }
  .ranked-services-widget .rank-category-card i { font-size: 22px; margin-bottom: 0; }
  .ranked-services-widget .rank-category-card p { margin: 0; font-weight: 600; font-size: 15px; }
  .ranked-services-widget .rank-toggle-icon { font-size: 20px; color: #0d4037; transition: transform 0.3s; }
  .ranked-services-widget .rank-category-card.active .rank-toggle-icon { transform: rotate(45deg); }
  .ranked-services-widget .rank-subcategory-section { display: none; padding: 15px 10px 25px; }
  .ranked-services-widget .rank-subcategory-section.active { display: block; animation: fadeIn 0.4s ease; }
  @keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }
  .ranked-services-widget .rank-subcategory-desktop { display: none !important; }
}

.ranked-services-widget .rank-subcategory-desktop {background:  #FFF1B2;padding: 60px 20px;}
.ranked-services-widget .rank-subcategory-card { background: #ffffff; border-radius: 12px; padding: 18px 20px;  transition: .25s; opacity: 0; transform: translateY(14px); }
.ranked-services-widget .rank-subcategory-card.show { opacity: 1; transform: translateY(0); }
.ranked-services-widget .rank-subcategory-card:hover { box-shadow: 0 6px 14px rgba(0,0,0,.12); transform: translateY(-3px); }
.ranked-services-widget .rank-subcategory-title { font-size: 18px; font-weight: 700; color: #111; margin: 0 0 8px; }
.ranked-services-widget .rank-subcategory-links { display: flex; align-items: center; gap: 10px; }
.ranked-services-widget .rank-subcategory-links a { font-size: 15px; font-weight: 600; text-decoration: none; }
.ranked-services-widget .rank-subcategory-links a.rank-compare { color: #0b4741; }
.ranked-services-widget .rank-subcategory-links a.rank-reviews { color: #555555; }
.ranked-services-widget .rank-subcategory-links .rank-divider { color: #cfcfcf; }
