body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    line-height: 1.6;
}




h1 {
    font-size: clamp(1.375rem, 5vw, 1.9375rem); 
    font-weight: 700;
    line-height: 1.2;
    color: #222;
    margin: 20px 0;
}

h2 { font-size: 1.75rem; }
h3 { font-size: 1.65rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

h2, h3, h4, h5, h6 {
    color: #222;
    font-weight: 700;
    line-height: 1.3;
    margin: 30px 0 15px;
}

@media (max-width: 992px) {
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.45rem; }
    h4 { font-size: 1.35rem; }
    h5 { font-size: 1.15rem; }
    h6 { font-size: 1rem; }
    
    h2, h3, h4, h5, h6 {
        margin: 40px 0 8px;
    }
}

@media (max-width: 576px) {
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }

    h2, h3, h4, h5, h6 {
        margin: 25px 0 6px;
    }
}






p {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333333;
    font-size: 1rem;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}




 
.site-header{
   
  width: 100%;
  background: linear-gradient(to bottom,  rgba(238,238,238,1) 0%,rgba(204,204,204,1) 100%); border-bottom: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
}





.site-header .wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}
.site-header h1{
  font-size: clamp(18px, 3vw, 22px);
  margin: 0;
  letter-spacing: .4px;
}
.nav a{
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 12px;
  transition: color .2s ease, background-color .2s ease;
}
.nav a:hover{
  color: var(--text);
  background: color-mix(in oklab, var(--brand) 15%, transparent);
}

 





.container {
     
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.main-content {
     
    background: white;
    padding: 15px;
    border-top: solid #c4bdbd 2px;
    margin-top: 50px;
}






 
 
.site-footer {
  border-top: 1px solid color-mix(in oklab, var(--muted) 20%, transparent);
  background: linear-gradient(to bottom,  rgba(125,126,125,1) 0%,rgba(14,14,14,1) 100%);    
  color: #bfbaba;
  font-size: 14px;
  padding: 20px 0;
  margin-top: 120px;
}

.site-footer .wrap {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  text-align: center;  
}

 
.footer-left {
  float: left;
  margin-left: 10px;
}
.footer-left p {
  margin: 0;
  color: var(--muted);
}

 
.footer-nav {
  display: inline-block;  
}
.footer-nav a {
  margin: 0 12px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}
.footer-nav a:hover { color: var(--text); }

 
.footer-right {
  float: right;
}
.to-top {
  text-decoration: none;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid color-mix(in oklab, var(--brand) 40%, var(--muted) 10%);
  color: var(--text);
  transition: background-color .2s ease, transform .12s ease;
}
.to-top:hover { background: color-mix(in oklab, var(--brand) 18%, transparent); }
.to-top:active { transform: translateY(1px); }

 
.site-footer .wrap::after {
  content: "";
  display: block;
  clear: both;
}

 
@media (max-width: 768px) {
  .footer-left, .footer-right {
    float: none;
    display: block;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-nav {
    display: block;
    margin: 10px 0;
  }
  .footer-right {
    display: none;  
  }
}







/* STAR RATING */
.allstars {
     float: left;
	 
}



.star-rating {
    font-size: 2em;
    color: #ccc;
    user-select: none;
    display: inline-flex;
    flex-direction: row-reverse;
}

.star-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: inherit;
    font-size: 1.1em;
    line-height: 1;
    position: relative;
    z-index: 1;
	margin-right: -6px;
}

.star-button:hover,
.star-button:hover ~ .star-button {
    color: gold;
}

.filled {
    color: gold;
    pointer-events: none;
}

.star {
    display: inline-block;
}

.avrating, .numofvotes {
    font-size: 12px;
	margin-left: 10px;
}

.ratingarea {
    margin-bottom: 20px;
}









table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);  
	border-radius: 10px;
    overflow: hidden;
	
}




th, td {
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ccc;
}

thead {
    background-color: #e9eff1;
    font-weight: bold;
    color: #0756b4;
	font-family: verdana;
}

tbody tr:nth-child(even) {
    background-color: #f8f9fa;  
}



th {
    font-size: 17px;
}

td {
    font-weight: bold;
}

 
tbody td:first-child {
    background-color: #e9eff1;
    color: #333;
	text-align: left;
}



 
table tr:first-child th:first-child {
    background-color: #8d989f;  
    color: white;
    font-weight: bold;
    text-align: center;
    border-radius: 12px 0 0 0;  
    padding: 10px;
}


tbody tr:last-child td a {
    display: inline-block;  
    font-size: 18px;
    color: blue;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;	
} 

tbody tr:last-child td a:hover {
    color: gold;
    transform: scale(1.2);
}

 
.category-row td {
    font-weight: bold;
    background-color: #fffce7;
    padding: 12px 15px;
    text-align: center;
    border: 1px solid #ccc;
}
 
 
 
 
 
@media screen and (max-width: 768px) {
  .table-container {
    overflow-x: auto;  
  }

  table, thead, tbody, th, td, tr {
    display: block;
    width: 100%;
    box-sizing: border-box;  
  }

  thead tr {
    display: none;  
  }

 
  tbody tr:not(:last-child) {
    margin-bottom: 37px;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    background-color: #fff;
  }

  tbody td:first-child::before {
    content: '';
  }

  tbody td:first-child {
    display: block;
    text-align: center;
    padding: 8px 12px;
    font-weight: bold;
    word-break: break-word;
    font-size: 18px;
  }

  tbody td:not(:first-child) {
    display: inline-block;
    padding: 8px 12px;
    border-bottom: 1px solid #eee;
    font-weight: normal;
    flex-wrap: wrap;
    min-width: 0;
    overflow-wrap: anywhere;
	font-weight: bold;		text-align: left;
  }

tbody td:not(:first-child)::before {    content: attr(data-label) ": ";    font-weight: bold;    margin-right: 9px;    flex-shrink: 0;    color: #0756b4;    font-family: verdana;}

  tbody td span.value {
    flex: 1 1 auto;
    display: inline-block;
    white-space: normal;
  }

  tbody td:last-child {
    border-bottom: 1px solid #d9d2d2;
  }

  
  tbody tr:last-child td:first-child {
    background-color: #e9eff1;
    font-size: 18px;
  }

  tbody tr:last-child td {
     
    flex-direction: column;    
    background: white;
    font-size: 18px;
    border-radius: 10px;	
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 4px #eee solid;
	line-height: 24px;
   	
  }
  
  
   

  tbody tr:last-child td::before {
     
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;        
    position: static;         
  }

  tbody tr:last-child td a {
    font-size: 20px;
    color: blue;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.3s ease;	
  } 

  tbody tr:last-child td a:hover {
    color: gold;
    transform: scale(1.2);
  } 
  
  
tr.tpros td:not(:first-child) {
    text-align: left; 
}

tr.tpros td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}



tr.tcons td:not(:first-child) {
    text-align: left; 
}

tr.tcons td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
}
}














.table-container {
    width: 100%;           
    overflow-x: auto;      
    -webkit-overflow-scrolling: touch;  
	 
}


.table-container table {
    margin-bottom: 10px;  
}


 
td[contenteditable="true"], th[contenteditable="true"] { 
    background-color: #fffbcc; 
}

 
button { 
    margin: 5px; 
    padding: 8px 12px; 
    cursor: pointer;
}





.related-posts { 

   margin-bottom: 120px;
   margin-top: 40px;
   margin-left: 13px;
     
}





.related-posts a { 

   color: blue;
   font-weight: bold;
   text-decoration: none;
   font-size: 17px;
     
}



.related-posts a:hover { 

   color: gold;
   font-weight: bold;
   text-decoration: none;
     
}





  
  
.reviews-container {
    margin-bottom: 30px;
    padding: 0 10px;  
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-container h2 {
    font-family: Arial, sans-serif;
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4em;
}

 
.review-card {
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 21px 20px 5px 18px;
    margin-bottom: 15px;
    transition: transform 0.2s;
    word-wrap: break-word; 
    margin-bottom: 70px;	
}

.review-card:hover {
    transform: translateY(-2px);
}

 
.review-header {
     
    justify-content: space-between;
    margin-bottom: 10px;
    font-weight: bold;
    color: #222;
    flex-wrap: wrap;  
}

.item-name {
     
    color: #0a51a9;
	background: white;
	padding: 2px 0px 2px 4px;
	
    
}



/* Footer */
.review-footer {
    text-align: right;
    font-size: 0.85em;
    color: #777;
    margin-top: 10px;
}

 
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .review-footer {
        text-align: left;
    }

    .review-card {
        padding: 12px 15px;
    }

    .reviews-container h2 {
        font-size: 1.5em;
    }
	
	.site-header img {

        width: 200px;

    }
	
	.author {

        display: none;

    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 10px 12px;
    }

    .reviews-container h2 {
        font-size: 1.3em;
    }
}


.site-header img {

width: 280px;

}







 
 





.author {
    margin-top: 13px;
    float: right;
	margin-right: 10px;
}

.author a {
    color: #333;
	text-decoration: none;
	font-size: 14px;
}





.post-titles-author a {
    text-decoration: none;
    font-size: 19px;
    font-family: "Verdana";
    color: #0D84C0;
}

.post-titles-author a:hover {
    color: #F2D32F;
    transition: all 0.5s ease;
}

.post-titles-author h5 {
    font-size: 23px;
    margin-top: 32px;
    margin-bottom: 0px;
}

.post-titles-author img {
    width: 50px;
}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 /* Pagination Container */
.pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
    gap: 8px;
    font-family: Arial, sans-serif;
}

/* Pagination Links */
.pagination a {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    background-color: #f0f0f0;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

/* Hover Effect */
.pagination a:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

/* Active Page */
.pagination a.active {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    pointer-events: none;
}

/* Small screens */
@media (max-width: 480px) {
    .pagination a {
        padding: 6px 10px;
        font-size: 14px;
    }
}








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


summary {
    list-style: none;
    display: block;
    padding: 3px 6px;
    background-color: #e5eaf0;
    color: #333;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    width: fit-content;   
}


summary:hover {
  background-color: #e8eef4;
}













/* ==================================================
   GLOBAL FIX (FLEX / GRID / FLOAT SAFE)
================================================== */
.comments-section,
.comment-wrapper,
.comment-form,
.comment-alert,
.no-comments {
    width: 100%;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
    clear: both;
    box-sizing: border-box;
}

 
.comments-section,
.comment-wrapper,
.comment-form,
.comment-alert,
.no-comments {
    align-self: center;
}

/* ==================================================
   GENERAL
================================================== */
.comment-wrapper {
    margin-top: 60px;
    margin-bottom: 40px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

.comments-title {
    font-size: 24px;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
	margin-top: 120px;
}

/* ==================================================
   ALERTS
================================================== */
.comment-alert {
    padding: 16px 18px;
    text-align: center;
    border-radius: 14px;
    font-weight: 600;
    margin-top: 100px;
    margin-bottom: 30px;
}

.comment-alert.success {
    background: #e8f5e9;
    color: #2e7d32;
}

.comment-alert.error {
    background: #ffebee;
    color: #c62828;
}

/* ==================================================
   COMMENTS LIST
================================================== */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comment {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 26px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.06);
    transition: transform 0.2s ease;
	margin-bottom: 20px;
}

.comment:hover {
    transform: translateY(-2px);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.comment-author {
    font-weight: 700;
    font-size: 16px;
    color: #222;
}

.comment-date {
    font-size: 13px;
    color: #999;
}


.comment-product {
	display: inline-block;
    background: #fbf9f6;
    width: 99%;
    padding: 3px 0px 3px 5px;
}

.comment-body {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* ==================================================
   EMPTY STATE
================================================== */
.no-comments {
    margin-top: 150px;
    padding: 30px 20px;
    text-align: center;
    font-size: 16px;
    color: #777;
    background: #fafafa;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}








/* ==================================================
   FORM
================================================== */
.comment-form {
    margin-top: 60px;
    margin-bottom: 80px;
    background: #fafafa;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 12px 45px rgba(0,0,0,0.07);
	margin-top: 100px;
}

.form-input {
    width: 100%;
    padding-left: 14px;
	padding-top: 14px;
	padding-bottom: 14px;
	padding-right: 0px;
    margin-bottom: 22px;
    font-size: 15px;
    border-radius: 12px;
    border: 1px solid #ddd;
    outline: none;
    background: #fff;
}

.form-input:focus {
    border-color: #111;
}

textarea.form-input {
    min-height: 130px;
    resize: vertical;
}






/* ==================================================
   FORM TEXTAREA COLORS (SAFE)
================================================== */

 
.comment-form textarea.pros-input {
    border-left: 4px solid #2e7d32;
    background-color: #fcfff8;  
    min-height: 100px; 	
}

 
.comment-form textarea.cons-input {
    border-left: 4px solid #c62828;
    background-color: #fff8f8;   
	min-height: 100px; 	
}

 
.comment-form textarea.review-input {
    border-left: 4px solid #1565c0;
    background-color: #f8fbff;   
    min-height: 170px;         
}

 
.comment-form textarea::placeholder {
    color: #777;
    font-style: italic;
}

 
.comment-form textarea.pros-input:focus,
.comment-form textarea.cons-input:focus,
.comment-form textarea.review-input:focus {
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}







/* =========================
   COMMENT CARD DETAILS
========================= */

/* Pros box */
.comment-pros {
    background-color: #f4faf4;   
    border-left: 4px solid #2e7d32;
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 14px;
     
}

/* Cons box */
.comment-cons {
    background-color: #fff5f5;   
    border-left: 4px solid #c62828;
    padding: 10px 14px;
    margin-bottom: 8px;
    border-radius: 10px;
    font-size: 14px;
     
}

/* Review */
.comment-review {
    background-color: #f8f9fb;  
    border-left: 4px solid #1565c0; 
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #222;
}

 
.comment-body > div + div {
    margin-top: 8px;
}








/* ==================================================
   CAPTCHA
================================================== */
.captcha-label {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
}

.captcha-input {
    max-width: 220px;
}

#captchaImage {
    margin-bottom: 15px;
    border-radius: 8px;
}

/* ==================================================
   BUTTON
================================================== */
.btn-submit {
    background: #111;
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-1px);
}

/* ==================================================
   HONEYPOT
================================================== */
.honeypot {
    display: none !important;
}


.comment-form .captcha-input,
.comment-form .btn-submit {
    display: block;
    width: 100%;       
    margin-bottom: 20px;   
}









/* STAR RATING (FORM) */
.rating-wrapper {
    display: flex;
    justify-content: flex-start;  
}

.rating {
    display: flex;
    flex-direction: row-reverse;  
    gap: 4px;
    font-size: 36px;
    cursor: pointer;
	margin-bottom: 10px;
}

.rating input {
    display: none;  
}

.rating label {
    color: #ccc;
    transition: color 0.2s ease, transform 0.2s ease;
}

/* hover i checked */
.rating label:hover,
.rating label:hover ~ label,
.rating input:checked ~ label {
    color: #f5b301;
}

.rating label:hover {
    transform: scale(1.2);
}

/* STAR RATING DISPLAY (COMMENTS) */
.comment-rating {
    display: flex;
    gap: 2px;
    color: #f5b301;
    font-size: 22px;
    margin: 4px 0 10px 0;  
    justify-content: flex-start;  
}


 
.comment-rating span {
    margin: 0;
}

 
/* Container for average rating */
.average-rating {
     
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Stars container inside average rating */
.average-rating .stars {
    display: flex;
    gap: 4px;
    font-size: 25px;
    color: #f5b301;
}

/* Individual star in average rating */
.average-rating .star {
    position: relative;
    display: inline-block;
    color: #ccc; /* default empty star */
    font-size: 29px;
}

/* Full star */
.average-rating .star.full {
    color: #f5b301;
}

/* Half star */
.average-rating .star.half {
    color: #ccc; /* base empty color */
}

.average-rating .star.half::before {
    content: '★';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;       /* half width */
    overflow: hidden;
    color: #f5b301;   /* gold color */
}

/* Empty star */
.average-rating .star.empty {
    color: #ccc;
}

/* ==============================
   Comment rating stars
============================== */

.comment-rating {
    display: flex;
    gap: 2px;
    font-size: 29px;
	line-height: 1;
}

/* Individual stars in comments */
.comment-rating .star {
    position: relative;
    display: inline-block;
    color: #ccc;  /* default empty */
}

/* Full star in comment */
.comment-rating .star.full {
    color: #f5b301;
}

/* Half star in comment */
.comment-rating .star.half {
    color: #ccc;
}

.comment-rating .star.half::before {
    content: '★';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #f5b301;
}

/* Empty star in comment */
.comment-rating .star.empty {
    color: #ccc;
}










/* =========================
   COMPANY SELECT – BOX STYLE
========================= */

.form-group {
    margin: 30px 0 40px;
}

.form-group > label {
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
}


.form-name > label {
    font-weight: 700;
    display: block;
    margin-bottom: 14px;
    font-size: 16px;
}


.rating-word > label {
    font-weight: 700;
    display: block;
    color: #333;
    font-size: 16px;
}

.write-review > label {
    font-weight: 700;
    display: block;
    color: #333;
    font-size: 16px;
	margin-bottom: 14px; 
}

 
.radio-option {
    margin-bottom: 12px;
}

 
.radio-option input {
    display: none;
}

 
.radio-option label {
    display: block;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    background: #fff;
    transition: all 0.2s ease;
}

/* hover */
.radio-option label:hover {
    border-color: #1565c0;
    background: #f5f9ff;
}

/* CHECKED */
.radio-option input:checked + label {
    border-color: #ffebad;
    background: #ffebad;
     
    box-shadow: 0 6px 20px rgba(21,101,192,0.25);
}

 
.radio-option input:checked + label::after {
    content: "✓";
    float: right;
    font-size: 18px;
}











/* ========================= */
 
.checkbox-option {
    margin-bottom: 12px;
}

.checkbox-option input {
    display: none;
}

.checkbox-option label {
    display: block;
    padding: 14px 18px;
    border: 2px solid #ddd;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    background: #fff;
    transition: all 0.2s ease;
    user-select: none;   
}

/* Hover */
.checkbox-option label:hover {
    border-color: #1565c0;
    background: #f5f9ff;
}

/* Checked */
.checkbox-option input:checked + label {
    border-color: #ffebad;
    background: #ffebad;
    box-shadow: 0 6px 20px rgba(21,101,192,0.25);
}

.checkbox-option input:checked + label::after {
    content: "✓";
    float: right;
    font-size: 18px;
    font-weight: bold;
}





/* =========================
   ALL LINKS
========================= */
.cat-post-links {
    display: block;  
    padding: 14px 16px;
    margin-bottom: 12px;
    border-radius: 10px;
    transition: all 0.25s ease;
    text-decoration: none;  
    color: inherit;  
    position: relative;
}

 
.cat-post-links h5,
.cat-post-links h6 {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* =========================
   BADGE
========================= */
.badge {
    background: #2b6cff;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 6px;
    text-transform: uppercase;
    line-height: 1;
    flex-shrink: 0;
}

/* =========================
   COMPARISON (MONEY PAGE)
========================= */
.cat-post-links.comparison {
    background: linear-gradient(135deg, #f8fff0, #d9f3c2);
    border: 2px dotted #82c79d;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    color: #1a3ea1;
}

.cat-post-links.comparison a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

.cat-post-links.comparison:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #dbe9ff, #c6dbff);
}

/* =========================
   SUPPORT POSTS
========================= */
.cat-post-links.post {
    background: #f9f9f9;
    border: 2px dotted #c5b9b9;
    font-weight: 500;
    color: #333;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

.cat-post-links.post a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: inherit;
}

.cat-post-links.post:hover {
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .cat-post-links {
        padding: 12px 14px;
    }

    .cat-post-links h5,
    .cat-post-links h6 {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.6rem;
        padding: 1px 5px;
    }
}












.author-text {
	
	margin-bottom: 30px;

}



.author-image {
	margin-bottom: 15px;
    margin-top: 10px;
}



.cat-text {
	
    margin-top: 30px;
}



.intro {
	
    margin-bottom: 30px;
}




.comparison-text {
	
    margin-top: 60px;
}




