:root {
  --primary-clr: #1e3a8a;
  --dark-primary-clr: #12224e;
  --secondary-clr: #f97316;
  --green-clr: #47b749;
  --secondary-clr-opacity: rgba(249, 115, 22, 0.8);
  --primary-clr-opacity: rgba(30, 58, 138, 0.85);
  --transition: all 0.3s ease-in-out;
  --letter-spacing: 0.25rem;
  --dark-clr: black;
  --dark-gray-clr: #111827;
  --light-gray-clr: #F3F4F6;
  --white-clr: #ffffff;
  --border-radius: 0.5rem;
  --light-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --dark-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  --icon-spacing: 1.3rem;
}


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

body {
  line-height: 1.5;
  font-family: sans-serif;
  color: var(--dark-gray-clr);
  margin-top: 65px;
}
h1, h2, h3, h4, h5, h6{
  color: var(--primary-clr);
  font-family: "Montserrat",
  sans-serif;
  font-weight: bold;
}



@media print {
  .post-contents {
    display: none;
  }
}



.markdown-preview {
  border: 1px solid var(--primary-clr);
  padding: 10px;
  margin: 1rem 0;
  background: lightblue;
  font-size: 14px;
  border-radius: var(--border-radius);
}

.markdown-preview pre {
  background: lightblue;
  color: var(--white-clr);
  padding: 8px;
  overflow-x: auto;
}

.markdown-preview code {
  background: lightblue;
  padding: 2px 4px;
  border-radius: 3px;
}


a {
  text-decoration: none;
  color: var(--secondary-clr);
}

img {
  display: block;
  width: 100%;
}

ul {
  padding: 0 0 0 2rem;
  list-style-type: none;
}

ul li {
  padding-left: 0.5rem;
  padding-bottom: 8px;
}

ol {
  padding-left: 2rem;
}
ol li{
  padding-bottom: 8px;
}

ul li::marker {
  content: "\f061";
  font-family: FontAwesome;
  color: var(--secondary-clr);
  font-size: 1rem;
}

p {
  margin: 1rem 0;
}

.section-container {
  padding: 1rem;
}
.section-gray{
  background: var(--light-gray-clr);
}

@media screen and (min-width:600px) {
  .section-container {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (min-width:996px) {
  .section-container {
    width: 80%;
    margin: 0 auto;
  }
}

.section-heading {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
}
.section-heading h2{
  color: var(--dark-gray-clr);
}
.section-heading a,
.read-more-btn a{
  color: var(--secondary-clr);
}

/* nav session */
.nav-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background: var(--white-clr);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 0.6rem 1.3rem;
  box-shadow: var(--dark-shadow);
  z-index: 99;
}

.search-btn,
.nav-btn {
  font-size: 1.5rem;
  color: var(--primary-clr);
}

.nav-logo {
  font-size: 1.5rem;
  color: var(--primary-clr);
}

.nav-logo img {
  height: 3rem;
}

.nav-logo p {
  margin: 0;
}

.nav-logo a {
  color: var(--primary-clr);
}

.nav-logo a span {
  color: var(--white-clr);
  background: var(--secondary-clr);
  padding: 0.2rem 0.4rem;
  border-radius: var(--border-radius);
}

.close-links {
  position: fixed;
  top: 65px;
  bottom: 0;
  width: 85vw;
  z-index: 999;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  background: var(--primary-clr-opacity);
  font-size: 1rem;
  transform: translateX(-50rem);
  line-height: 1;
}


.auth-links,
.nav-links {
  padding: 0;
}
.nav-links{
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: 2px;
}

.auth-links{
  border-top: 1px solid var(--dark-primary-clr);
  padding: 10px 0;
  /* background: var(--primary-clr); */
}

.nav-link::marker {
  content: "";
}

.nav-link {
  padding-left: 0;
}


.nav-close-btn {
  font-size: 1.3rem;
  padding: 10px 1rem;
  cursor: pointer;
  color: var(--white-clr);
  text-align: right;
  border-bottom: 1px solid var(--dark-primary-clr);
}
.nav-close-btn i{
  background: var(--dark-primary-clr);
  border-radius: var(--border-radius);
  padding: 0.5rem;
}
.nav-link a {
  color: var(--white-clr);
  display: inline-block;
  width: 100%;
  transition: var(--transition);
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 1rem;
}

.nav-link a:hover {
  background: var(--dark-primary-clr);
  padding-left: 1.5rem;
}

@media screen and (min-width:768px) {
  .close-links {
    width: 50vw;
    transform: translateX(-80rem);

  }
}

@media screen and (min-width:996px) {
  .close-links {
    width: 30vw;
    transform: translateX(-100rem);

  }
}

.show-nav {
  transform: translateX(0);
}

/* FLOATING SEARCH DROPDOWN */
.search-dropdown {
  position: fixed;
  top: 68px;
  right: 1rem;
  width: 320px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  padding: 2rem;
  display: none;
  z-index: 99;
}

/* FORM */
.search-form {
  display: flex;
  gap: 0.4rem;
}

.search-input {
  flex: 1;
  padding: 0.55rem;
  font-size: 0.95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.search-submit {
  background: #0056d2;
  color: #fff;
  border: none;
  padding: 0.55rem 0.8rem;
  border-radius: 4px;
  cursor: pointer;
}

/* MOBILE ADJUSTMENT */
@media (max-width: 768px) {
  .search-dropdown {
    right: 0.5rem;
    width: calc(100% - 1rem);
  }
}
.suggestions {
  list-style: none !important;
  margin: 0.4rem 0 0;
  padding: 0;
  border-top: 1px solid #eee;
}
.suggestions li::marker {
  content: "";
}

.suggestions li {
  padding: 0.45rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.suggestions li:hover {
  background: #f4f6f8;
}

.suggestion-type {
  font-size: 0.7rem;
  color: #777;
  margin-right: 0.4rem;
}


.banner {
  background: var(--primary-clr);
  height: 70vh;
  text-align: center;
  color: var(--white-clr);
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-info p {
  margin: 3rem 4rem;
  font-style: italic;
}
.banner-info h1 {
  margin: 1rem;
  color: var(--white-clr);
}

.save-btn,
.subscribe-btn {
  background-color: var(--secondary-clr);
  color: var(--white-clr);
  padding: 0.2rem 0.5rem;
  border-radius: var(--border-radius);
  font-family: "Montserrat",
  sans-serif;
  margin: 0.5rem;
  font-weight: 400;
  font-size: 1rem;
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
}

.hidden {
  display: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Optional: align text + spinner nicely */
#subscribe-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
/* Shake animation */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-5px); }
  40%, 80% { transform: translateX(5px); }
}

.shake {
  animation: shake 0.3s ease;
}


.trust-container,
.service-container {
  text-align: center;
}
.trust-container{
  background: var(--light-gray-clr);
}

/* .trust{
padding: 1rem;
} */
 .trust,
.service{
  padding: 1rem;
  margin: 1rem;
  box-shadow: var(--dark-shadow);
  /* border: 1px solid var(--light-gray-clr); */
}

.trust .fas,
.service .fas{
  color: var(--secondary-clr);
  font-size: 2rem;
}




/* @media screen and (min-width: 768px) {
  .service-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
} */

@media screen and (min-width: 996px) {
  /* .service-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .trust-flex {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  } */
.trust .fas
.service .fas {
  font-size: 2.5rem;
}
}

/* footer */

.single-contact {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}

.single-contact p {
  margin: 0;
}

.single-contact a {
  color: var(--white-clr);
}

.contact-info {
  margin-left: 1rem;
}

.contact-icon {
  color: var(--second-secondary-clr);
}

.pages a,
.services a {
  color: var(--white-clr);
}

.footer-service,
.footer-page {
  padding-bottom: 1rem;
}

.contact-us {
  margin-bottom: 2rem;
}


.footer-link{
  text-align: center;
}
.footer-link a {
  color: var(--dark-gray-clr);
}
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.footer-icon {
  transition: var(--transition);
}

.footer-icon a {
  font-size: 1.3rem;
  /* color: var(--white-clr); */
  color: var(--primary-clr);
  border-radius: var(--border-radius);
  padding: 0.3rem 0.6rem;
}

.footer-icon:hover {
  transform: translateY(-0.5rem);
}

.footer-right {
  text-align: center;
  padding: 0rem 0rem 1rem ;
  /* color: var(--white-clr); */
}

.footer-logo{
  text-align: center;
}
.footer-logo img{
  width: 15rem;
  display: inline-block;
}



/* single article */
.articles {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

.single-article {
    background: var(--white-clr);
    border-radius: var(--border-radius);
    box-shadow: var(--dark-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.single-article:hover{
  transform: translateY(-6px);
  box-shadow: var(--light-shadow);
}
.article-img{
  overflow: hidden;
}
.article-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition);
}

.single-article:hover img{
  transform: scale(1.05);
}

.article-heading a:hover {
  color: var(--primary-clr);
  transition: var(--transition);

}


.article-date i {
  color: var(--secondary-clr);
}

.article-date {
  color: var(--dark-gray-clr);
  color: #888;
  padding: 14px 20px 0 20px;
}

.article-info {
  padding: 10px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-heading h3{
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.article-brief{
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.read-more-btn{
  margin-top: auto;
}


.news-letter{
  background: var(--primary-clr);
  padding: 1rem;
  margin: 0rem 0 1rem;
  text-align: center;
  color: var(--white-clr);
}
.news-letter h3{
  color: var(--white-clr);
}

.pagination-container {
  background: var(--light-gray-clr);
  padding: 1rem;
}
.pagination-item::marker {
  content: "";
}

.pagination-item {
  cursor: pointer;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bolder;
  text-align: center;
  margin: 1rem 0;
}

.prev,
.next {
  border: 1px solid var(--dark-primary-clr);
  background: var(--dark-primary-clr);
  color: var(--dark-primary-clr);
  border-radius: 50%;
  text-align: center;
  padding-left: 0;
  padding: 0.2rem 0.5rem;
  margin: 0 0 0 1rem;
}

.pagination-active {
  color: var(--secondary-clr);
}
.article-heading a{
  color: var(--dark-gray-clr);
}


.related-layout{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.featured-related{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.featured-img img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.featured-content{
    padding:20px;
}

.featured-content h3{
    font-size:20px;
    margin-top:10px;
}

.featured-content a{
    text-decoration:none;
    color:#222;
}

.featured-content a:hover{
    color:var(--primary-clr);
}

.featured-date{
    font-size:14px;
    color:#777;
}

/* smaller posts */

.small-related{
    display:flex;
    gap:12px;
    margin-bottom:18px;
}

.small-img img{
    width:90px;
    height:70px;
    object-fit:cover;
    border-radius:6px;
}

.small-content h4{
    font-size:15px;
    margin-bottom:6px;
}

.small-content a{
    text-decoration:none;
    color:#222;
}

.small-content a:hover{
    color: var(--primary-clr);
}

.small-content span{
    font-size:13px;
    color:#777;
}

/* mobile */

@media(max-width:768px){

.related-layout{
    grid-template-columns:1fr;
}

.featured-img img{
    height:200px;
}

}

/* post details */
.content-banner {
  background: var(--primary-clr);
  height: 40vh;
  text-align: center;
  color: var(--white-clr);
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-banner-info p {
  margin: 3rem 4rem;
  /* padding-left: 5rem; */
  font-style: italic;
}

.content-banner-info h1,
.content-banner-info h2,
.content-banner-info h3 {
  margin: 1rem;
  color: var(--white-clr);
}
.content-banner-info h1{
  font-size: 1.3rem;
}


.post-contents table{
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-collapse: collapse;
  table-layout: auto;
}
.post-contents th,
.post-contents td{
  padding: 10px;
  border: 1px solid var(--primary-clr);
}
.post-contents th{
  color: var(--white-clr);
  background: var(--primary-clr);
  text-align: left;
  border-right: 1px solid var(--white-clr);
  white-space: nowrap;

}
.post-contents tbody tr:nth-child(odd){
  background-color: #f9fafb;
}
.post-contents tbody tr:nth-child(even){
  background-color: #ffffff;
}
.reaction-box {
    margin-top: 5px;
    font-size: 14px;
}

.reaction-box button {
    border: none;
    background: none;
    cursor: pointer;
}


.share-this {
  color: var(--secondary-clr);
  margin-bottom: 1rem;
}


.share-links a {
  display: inline-block;
  background: var(--primary-clr);
  color: var(--white-clr);
  padding: 0.3rem 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.share-this a {
  background: var(--primary-clr);
  color: var(--white-clr);
  padding: 0.3rem 0.5rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.share-links a:hover {
  transform: translateY(-0.5rem);
}

/* target groups */
.single-target-group {
  box-shadow: var(--light-shadow);
  text-align: center;
  padding-bottom: 1rem;
  margin: 1rem;
}

.single-target-img {
  background: var(--dark-primary-clr);
}

.single-target-img img {
  width: 100px;
  height: 300px;
  border-radius: 50%;
  margin: 0 auto;
}
.founder-img{
  background: var(--dark-primary-clr);
}
.founder-img img {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}

@media screen and (min-width:560px) {
  .founder-img img {
    width: 80%;
  }
}
@media screen and (min-width:768px) {
  .founder-img img {
    width: 60%;
  }
}

@media screen and (min-width:996px) {
  .founder-img img {
    width: 50%;
  }
}

.single-target-detail {
  padding: 0.5rem;
}

.single-target-detail a {
  color: var(--white-clr);
  background: var(--dark-primary-clr);
  padding: 0.25rem;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.single-target-detail a:hover {
  background: var(--primary-clr);
}

.branding{
  background: var(--primary-clr);
  color: var(--white-clr);
  text-align: center;
}
.branding h3{
  color: var(--white-clr);
}
.single-service{
  margin: 1rem 0;
}

.better-form {
  width: 100%;
  padding: 5rem 0;
  background: var(--light-gray-clr);
}

.form-group {
  width: 90%;
  margin: 0 auto;
  background: var(--white-clr);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--light-shadow);
}

label {
  display: inline;
  margin: 0.5rem 0;
}


textarea,
input {
  display: inline;
  /* width: 100%; */
  margin: 0 auto;
  padding: 0.5rem;
  margin: 1rem 0;
  outline: none;
  border: 1px solid var(--primary-clr);
  border-radius: var(--border-radius);
}

button{
  outline: none;
  font-size: 1rem;
  display: inline-block;
  /* width: 100%; */
  background: var(--secondary-clr);
  border: 1px solid var(--secondary-clr);
  border-radius: var(--border-radius);
  color: var(--white-clr);
  cursor: pointer;
  padding: 0.3rem 0.5rem;
}


@media screen and (min-width:768px) {
  .form-group {
    width: 60%;
  }
}

@media screen and (min-width:996px) {
  .form-group {
    width: 50%;
  }
}

/* contact page */
.contact-center {
  text-align: center;
}

.contact-page-item {
  margin: 2rem;
}

.contact-page-icon i {
  font-size: 4rem;
  color: var(--secondary-clr);
}

.contact-page-item h3 {
  padding-top: 1rem;
}

.contact-heading {
  margin-top: 1rem;
}

.primary-btn {
  display: block;
  width: 50%;
  margin: 1rem auto;
  padding: 0.6rem;
  border: none;
  cursor: pointer;
  color: var(--white-clr);
  background: var(--secondary-clr);
  border-radius: var(--border-radius);
}

/* profile */
.edit-profile a,
.select-service a {
  color: var(--white-clr);
  background: var(--primary-clr);
  padding: 0.3rem 0.5rem;
  display: block;
  margin: 0.3rem;
  border-radius: var(--border-radius);
  text-align: center;
}

.select-service {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}



.toc-box {
    background: #f8fafc;
    border-left: 4px solid var(--primary-clr);
    padding: 16px;
    margin: 20px 0;
}

.toc-box ul {
    list-style: none;
    padding-left: 0;
}

.toc-box li {
    margin: 6px 0;
}

.toc-box li.h3 {
    margin-left: 16px;
    font-size: 0.9rem;
}

.toc-box a {
    color: #2563eb;
    text-decoration: none;
}

.toc-box a:hover {
    text-decoration: underline;
}
@media (min-width: 1024px) {
    .toc-box {
        position: sticky;
        top: 80px;
    }
}

/* TOC container */
.toc-box {
    border-left: 4px solid var(--primary-clr);
    background: lightblue;
    padding: 12px;
    margin: 20px 0;
}

/* Toggle button */
.toc-toggle {
    width: 100%;
    background: none;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Chevron animation */
.chevron {
    transition: transform 0.3s ease;
}

.toc-list ul li::marker {
  content: "";
}
/* List styles */
.toc-list ul {
    list-style: none;
    padding-left: 0;
    margin-top: 12px;
}

.toc-list li {
    margin: 6px 0;
}

.toc-list li.h3 {
    margin-left: 16px;
    font-size: 0.9rem;
}

/* Desktop: always open */
/*@media (min-width: 768px) {
    .toc-toggle {
        display: none;
    }

    .toc-list {
        display: block !important;
    }
}*/

.toc-list a.active {
    font-weight: 600;
    color: #1d4ed8;
}
.comment{
  color: var(--dark-primary-clr);
  margin: 1rem;
}
/*forms*/
.form-wrapper {
  padding: 1rem;
}

.comment-section textarea,
.form-wrapper input,
.form-wrapper textarea{
  width: 100% !important;
}

@media screen and (min-width:600px) {
  .form-wrapper {
    width: 90%;
    margin: 0 auto;
  }
}

@media screen and (min-width:996px) {
  .form-wrapper {
    width: 80%;
    margin: 0 auto;
  }
}
.form-container {
  width: 80%;
  margin: 0 auto;
  background: var(--white-clr);
  padding: 2rem;
  border-radius: var(--border-radius);
  box-shadow: var(--light-shadow);
}
@media screen and (min-width:768px) {
  .form-container {
    width: 60%;
  }
}

@media screen and (min-width:996px) {
  .form-container {
    width: 50%;
  }
}
.signup-url{
  color: var(--secondary-clr);
}



.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  /* hidden by default */
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal {
  background: #fff;
  padding: 24px;
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
  animation: pop .3s ease;
}
@keyframes pop {
  from { transform: scale(.95); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal h3 {
  margin-top: 0;
}

.modal input {
  width: 100%;
  padding: 10px;
  margin: 12px 0;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: var(--secondary-clr);
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: var(--secondary-clr);
}

#subscribe-message {
  margin-top: 10px;
}

.alert-success {
  color: #155724;
}

.alert-error {
  color: #721c24;
}
.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.hidden { display: none; }

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* =========================
   SEARCH RESULTS PAGE
   ========================= */

.search-results {
  max-width: 880px;
  margin: 6rem auto 1rem;
  padding: 0 1.2rem;
  /* font-family: system-ui, -apple-system, "Segoe UI", sans-serif; */
}

.search-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.search-title span {
  color: #2563eb;
}

.search-hint {
  color: #6b7280;
  font-size: 0.95rem;
}

/* -------- Sections -------- */

.result-section {
  margin-top: 2.2rem;
}

.result-section h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #111827;
}

/* -------- Result list -------- */

.result-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.result-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.8rem;
  transition: all 0.2s ease;
}

.result-card:hover {
  border-color: #2563eb;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.08);
}

/* -------- Links -------- */

.result-card a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

.result-card a:hover {
  color: #2563eb;
}

.action {
  display: block;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  color: #2563eb;
  font-weight: 600;
}

/* -------- Question meta -------- */

.meta {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0.4rem 0;
}

.secondary-link {
  display: inline-block;
  font-size: 0.85rem;
  color: #2563eb;
  margin-top: 0.4rem;
}

/* -------- Mobile -------- */

@media (max-width: 640px) {
  .search-title {
    font-size: 1.5rem;
  }

  .result-card {
    padding: 0.9rem;
  }
}

/* cookie */

.cookie-banner{
position:fixed;
bottom:0;
left:0;
width:100%;
background:#111827;
color:white;
padding:20px;
display:none;
z-index:9999;
}

.cookie-inner{
max-width:1100px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:15px;
flex-wrap:wrap;
}

.cookie-text p{
margin:5px 0 0;
font-size:14px;
color:#d1d5db;
}

.cookie-actions button{
padding:8px 16px;
border:none;
border-radius:5px;
cursor:pointer;
margin-left:10px;
}

#cookie-accept{
background:var(--primary-clr);
color:white;
}

#cookie-reject{
background:#374151;
color:white;
}