/*──────────────────────────────────────────────────────────────────
  ABOUT PAGE + TOUR PAGE RULES 
──────────────────────────────────────────────────────────────────*/


/* Add bottom spacing to .entry-content only on About page (ID 6941) */
body.page-id-6941 .entry-content {
  margin-bottom: 50px; /* or padding-bottom: 30px; */
}


/* Default (desktop) */
#post-6941 {
  max-width: 100%;
}


/* Mobile <600px */
@media screen and (max-width: 599px) {
  #post-6941 {
    /*margin-top: 100px;*/
  }
   /* Question bubble on mobile */
  .auto-chat .msg.a {
    background: #f4f4f4;
    color: #000;
    padding: 0.9rem 1.6rem;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    max-width: 160ch;
    white-space: pre-wrap;
  }
	.social-stack {
    flex‐direction: column;
    gap: 1rem;         
  }
}


/* 
@media screen and (min-width: 600px) {
  #post-6941 {
    max-width: 65%;
  }

}
@media screen and (min-width: 700px) {
  #post-6941 {
    max-width: 67%;
  }
}
@media screen and (min-width: 800px) {
  #post-6941 {
    max-width: 70%;
  }
}
@media screen and (min-width: 1000px) {
  #post-6941 {
    max-width: 75%;
  }
}
@media screen and (min-width: 1200px) {
  #post-6941 {
    max-width: 80%;
  }
}

@media screen and (min-width: 1600px) {
  #post-6941 {
    max-width: 50%;
    color: darkblue;
  }
}
*/



/* ──────────────────────────────────────────────────────────────────────
   (Your existing .auto-chat, Typed.js, etc. would follow here…)
────────────────────────────────────────────────────────────────────── */



.auto-chat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 2.5rem;
  padding-left: 1rem;
}
.auto-chat .msg {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.auto-chat .msg.visible {
  opacity: 1 !important;
}
/* Question bubble */
.auto-chat .msg.q {
  background: white;
  color: #000;
  /* reduced from 0.9rem/1.6rem to 0.5rem/1rem */
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  /* max-width: 60ch; */
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  white-space: pre-wrap;
}

/* Make only the first inner <span> (which holds icon+text) a flex row */
.auto-chat .msg.q > span:first-child {
  display: inline-flex;
  align-items: center;
}
/* Zero out any default padding/margin on both anchors */
.auto-chat .msg.q .icon-link,
.auto-chat .msg.q .text-link {
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: inherit;
}

/* Ensure the icon sits to the left of the text and is vertically centered */
.auto-chat .msg.q .icon-link {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem; /* space between icon and text */
}

/* Vertically center the SVG itself */
.auto-chat .msg.q .icon-link svg {
  vertical-align: middle;
}
/* Restore hover effect on the entire question bubble */
.auto-chat .msg.q:hover {
  background-color: #f4f4f4;
  color: var(--gt-orange);
  cursor: pointer;
}

/* Ensure individual anchors still show pointer */
.auto-chat .msg.q .icon-link:hover,
.auto-chat .msg.q .text-link:hover {
  cursor: pointer;
}







/* Answer inside the same .msg.q */
.auto-chat .msg.q .a {
  display: block;
  color: #000;
  /* max-width: 80ch; */
  padding: 0.5rem 1.6rem 0 1.6rem;
  white-space: pre-wrap;
  text-shadow: 0 0 2px #fff;
  font-weight: normal;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.auto-chat .searching {
  margin: 1.8rem 0 0;
  font-style: italic;
  /*font-size: 1rem;
  line-height: 1.3;*/
  background: linear-gradient(90deg,#666 10%,#aaa 50%,#666 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.typed-cursor {
  display: inline-block;
  animation: blink 0.7s steps(1) infinite;
  font-weight: bold;
  margin-left: 0;
}
@keyframes blink {
  50% { opacity: 0; }
}

/* ─── Append these rules for bullet styling ─── */



/* keep only the heading bold as block, target it more specifically */
.auto-chat .a > b {
  display: block;
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
}

/* for <b> inside <li>, make it inline */
.auto-chat .a ul li b {
  display: inline;
  font-size: inherit;
  margin: 0;
}

/* Remove default bullets and add slight indent */
.auto-chat .a ul {
  list-style: none;
  margin-left: 0.8rem;
  padding-left: 0;
  font-size: 1.1rem;
}

/* Each <li> uses a custom bullet and its text is indented */
.auto-chat .a ul li {
  position: relative;
  margin-bottom: 0.6rem;
  padding-left: 1rem; /* ensures text sits right of custom bullet */
  line-height: 1.3;
}

/* Custom bullet “dot” */
.auto-chat .a ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em; /* vertically center */
  width: 0.4rem;
  height: 0.4rem;
  background-color: #000;
  border-radius: 50%;
}

/* Make the label before the colon bold without forcing a line break */
.auto-chat .a ul li b {
  display: inline;
  font-weight: 700;
  margin-right: 0.25rem;
}


/* Add to your existing <style> block */
.auto-chat .a h3.about-blurb-header {
  margin-top: 1.5rem;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}
/* Unbold links in answer text and give them a dark-blue underline */
.auto-chat .a a {
  /*font-weight: normal;*/
  color: var(--gt-blue);
  text-decoration: none;
}

/* Optional: slightly darker on hover */
.auto-chat .a a:hover {
  color: var(--gt-orange);
}














/* Optional spacing after the list */
.auto-chat .a ul + br,
.auto-chat .a ul + p {
  margin-top: 1rem;
}

/* ------- MOBILE ------------- */
@media (max-width:768px){
  .entry-content {
    padding-top: 100px;
  
	}

}