
.hb-tee-guide{
  --hb-ink:#111111;
  --hb-copy:#333333;
  --hb-muted:#6b6b6b;
  --hb-line:#dddddd;
  --hb-soft:#f5f5f5;
  --hb-white:#ffffff;

  width:100%;
  max-width:1180px;
  margin:0 auto;
  color:var(--hb-copy);
  font-family:Arial,Helvetica,sans-serif;
  font-size:17px;
  line-height:1.72;
}

.hb-tee-guide,
.hb-tee-guide *{
  box-sizing:border-box;
}

.hb-tee-guide h2,
.hb-tee-guide h3,
.hb-tee-guide p,
.hb-tee-guide ul{
  margin-top:0;
}

.hb-tee-guide h2{
  margin:72px 0 22px;
  padding-top:19px;
  border-top:2px solid var(--hb-ink);
  color:var(--hb-ink);
  font-size:clamp(27px,3vw,37px);
  line-height:1.18;
  letter-spacing:-.028em;
}

.hb-tee-guide h3{
  margin:35px 0 12px;
  color:var(--hb-ink);
  font-size:22px;
  line-height:1.32;
}

.hb-tee-guide p{
  margin-bottom:19px;
}

.hb-tee-guide a{
  color:var(--hb-ink);
  font-weight:700;
  text-decoration-color:#8d8d8d;
  text-decoration-thickness:1px;
  text-underline-offset:4px;
}

.hb-tee-guide a:hover{
  text-decoration-color:var(--hb-ink);
}

.hb-tee-guide img{
  display:block;
  max-width:100%;
}

/* INTRO */
.hb-tee-guide .hb-lede{
  width:100%;
  margin:0 0 30px;
  color:#252525;
  font-size:20px;
  line-height:1.64;
}

.hb-tee-guide .hb-direct-answer{
  display:grid;
  grid-template-columns:160px minmax(0,1fr);
  gap:28px;
  width:100%;
  margin:32px 0 22px;
  padding:21px 0;
  border-top:1px solid var(--hb-line);
  border-bottom:1px solid var(--hb-line);
}

.hb-tee-guide .hb-direct-answer strong{
  color:var(--hb-ink);
  font-size:13px;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.hb-tee-guide .hb-direct-answer p{
  margin:0;
}

/* TOC */
.hb-tee-guide .hb-toc{
  display:flex;
  flex-wrap:nowrap;
  gap:8px;
  width:100%;
  margin:22px 0 48px;
  padding:12px;
  border:1px solid var(--hb-line);
  background:var(--hb-soft);
}

.hb-tee-guide .hb-toc a{
  flex:1 1 0;
  min-width:0;
  padding:10px 7px;
  border:1px solid #c7c7c7;
  background:var(--hb-white);
  color:var(--hb-ink);
  font-size:13px;
  line-height:1.25;
  text-align:center;
  text-decoration:none;
  white-space:nowrap;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.hb-tee-guide .hb-toc a:hover{
  border-color:var(--hb-ink);
  background:var(--hb-ink);
  color:var(--hb-white);
}

/* ROLE SPLIT */
.hb-tee-guide .hb-role-split{
  display:grid;
  grid-template-columns:1fr 1fr;
  margin:32px 0 39px;
  border-top:2px solid var(--hb-ink);
  border-bottom:1px solid var(--hb-line);
}

.hb-tee-guide .hb-role-split>div{
  padding:27px 30px 29px 0;
}

.hb-tee-guide .hb-role-split>div+div{
  padding-left:30px;
  border-left:1px solid var(--hb-line);
}

.hb-tee-guide .hb-role-split span{
  display:block;
  margin-bottom:8px;
  color:var(--hb-muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.hb-tee-guide .hb-role-split h3{
  margin:0 0 11px;
  font-size:25px;
}

.hb-tee-guide .hb-role-split p:last-child{
  margin-bottom:0;
}

/* NOTE */
.hb-tee-guide .hb-note{
  margin:29px 0 39px;
  padding:22px 25px;
  border-left:4px solid var(--hb-ink);
  background:var(--hb-soft);
}

.hb-tee-guide .hb-note strong{
  display:block;
  margin-bottom:6px;
  color:var(--hb-ink);
}

.hb-tee-guide .hb-note p:last-child{
  margin-bottom:0;
}

/* STRONG INTERNAL LINK */
.hb-tee-guide .hb-category-bridge{
  margin:33px 0 43px;
  padding:20px 0;
  border-top:1px solid var(--hb-line);
  border-bottom:1px solid var(--hb-line);
}

.hb-tee-guide .hb-category-bridge p{
  margin:0;
}

/* PRODUCT FEATURE */
.hb-tee-guide .hb-product-feature{
  display:grid;
  grid-template-columns:minmax(320px,.94fr) minmax(340px,1.06fr);
  margin:39px 0 48px;
  overflow:hidden;
  border:1px solid var(--hb-line);
  background:var(--hb-white);
}

.hb-tee-guide .hb-product-image{
  position:relative;
  display:block;
  min-height:500px;
  overflow:hidden;
  background:#efefef;
  text-decoration:none;
  isolation:isolate;
}

.hb-tee-guide .hb-product-image .hb-img-main,
.hb-tee-guide .hb-product-image .hb-img-hover{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  padding:14px;
  object-fit:contain;
  background:#efefef;
  backface-visibility:hidden;
  transform:translateZ(0);
  transition:
    opacity .38s ease,
    transform .52s cubic-bezier(.22,.61,.36,1);
}

.hb-tee-guide .hb-product-image .hb-img-main{
  z-index:1;
  opacity:1;
  transform:scale(1);
}

.hb-tee-guide .hb-product-image .hb-img-hover{
  z-index:2;
  opacity:0;
  transform:scale(1.025);
}

/* DESKTOP MAGNETIC HOVER IMAGE SWAP */
@media (hover:hover) and (pointer:fine){
  .hb-tee-guide .hb-product-image:hover .hb-img-main,
  .hb-tee-guide .hb-product-image:focus .hb-img-main{
    opacity:0;
    transform:scale(.985);
  }

  .hb-tee-guide .hb-product-image:hover .hb-img-hover,
  .hb-tee-guide .hb-product-image:focus .hb-img-hover{
    opacity:1;
    transform:scale(1);
  }
}

.hb-tee-guide .hb-product-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:clamp(30px,4vw,50px);
}

.hb-tee-guide .hb-product-copy h3{
  margin:0 0 14px;
  font-size:28px;
}

.hb-tee-guide .hb-mini-label{
  margin-bottom:9px;
  color:var(--hb-muted);
  font-size:12px;
  font-weight:700;
  letter-spacing:.09em;
  text-transform:uppercase;
}

.hb-tee-guide .hb-product-reverse .hb-product-image{
  order:2;
}

.hb-tee-guide .hb-product-reverse .hb-product-copy{
  order:1;
}

/* BUTTONS */
.hb-tee-guide .hb-button{
  display:inline-block;
  align-self:flex-start;
  margin-top:8px;
  padding:12px 19px;
  border:1px solid var(--hb-ink);
  background:var(--hb-ink);
  color:var(--hb-white);
  font-size:14px;
  font-weight:700;
  line-height:1.35;
  text-decoration:none;
  transition:
    background .2s ease,
    color .2s ease;
}

.hb-tee-guide .hb-button:hover{
  background:var(--hb-white);
  color:var(--hb-ink);
}

/* WARDROBE CHECK */
.hb-tee-guide .hb-editorial-check{
  margin:31px 0 41px;
  padding:0;
  border-top:2px solid var(--hb-ink);
}

.hb-tee-guide .hb-editorial-check p{
  padding:20px 0;
  margin:0;
  border-bottom:1px solid var(--hb-line);
}

.hb-tee-guide .hb-editorial-check strong{
  color:var(--hb-ink);
}

/* BUYING CHECK */
.hb-tee-guide .hb-buying-advice{
  margin:34px 0 42px;
  padding:27px 29px;
  border:1px solid var(--hb-line);
  background:var(--hb-white);
}

.hb-tee-guide .hb-buying-advice>strong{
  display:block;
  margin-bottom:14px;
  color:var(--hb-ink);
  font-size:19px;
}

.hb-tee-guide .hb-buying-advice ul{
  margin:0;
  padding-left:21px;
}

.hb-tee-guide .hb-buying-advice li{
  margin-bottom:9px;
}

.hb-tee-guide .hb-buying-advice li:last-child{
  margin-bottom:0;
}

/* THREE BUYING DIRECTIONS */
.hb-tee-guide .hb-reader-fit{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin:30px 0 40px;
  border-top:1px solid var(--hb-line);
  border-left:1px solid var(--hb-line);
}

.hb-tee-guide .hb-reader-fit>div{
  padding:22px;
  border-right:1px solid var(--hb-line);
  border-bottom:1px solid var(--hb-line);
}

.hb-tee-guide .hb-reader-fit strong{
  display:block;
  margin-bottom:7px;
  color:var(--hb-ink);
}

.hb-tee-guide .hb-reader-fit p{
  margin:0;
  color:var(--hb-muted);
  font-size:15px;
  line-height:1.58;
}

/* FAQ */
.hb-tee-guide .hb-faq details{
  margin-bottom:12px;
  border:1px solid var(--hb-line);
  background:var(--hb-white);
}

.hb-tee-guide .hb-faq summary{
  position:relative;
  padding:19px 52px 19px 20px;
  color:var(--hb-ink);
  font-weight:700;
  cursor:pointer;
  list-style:none;
}

.hb-tee-guide .hb-faq summary::-webkit-details-marker{
  display:none;
}

.hb-tee-guide .hb-faq summary:after{
  content:"+";
  position:absolute;
  top:50%;
  right:20px;
  transform:translateY(-50%);
  font-size:22px;
}

.hb-tee-guide .hb-faq details[open] summary:after{
  content:"–";
}

.hb-tee-guide .hb-faq-answer{
  padding:0 20px 20px;
}

/* FINAL CTA */
.hb-tee-guide .hb-final{
  margin-top:68px;
  padding:clamp(31px,5vw,52px);
  border:2px solid var(--hb-ink);
  background:var(--hb-soft);
}

.hb-tee-guide .hb-final h2{
  margin-top:0;
  padding-top:0;
  border-top:0;
}

.hb-tee-guide .hb-final-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:12px;
  margin-top:24px;
}

.hb-tee-guide .hb-button-secondary{
  background:var(--hb-white);
  color:var(--hb-ink);
}

.hb-tee-guide .hb-button-secondary:hover{
  background:var(--hb-ink);
  color:var(--hb-white);
}

/* TABLET */
@media(max-width:920px){
  .hb-tee-guide .hb-toc{
    flex-wrap:wrap;
  }

  .hb-tee-guide .hb-toc a{
    flex:1 1 calc(33.333% - 8px);
  }

  .hb-tee-guide .hb-reader-fit{
    grid-template-columns:1fr;
  }
}

/* MOBILE */
@media(max-width:780px){
  .hb-tee-guide{
    font-size:16px;
    line-height:1.68;
  }

  .hb-tee-guide h2{
    margin-top:56px;
  }

  .hb-tee-guide .hb-direct-answer,
  .hb-tee-guide .hb-role-split,
  .hb-tee-guide .hb-product-feature{
    grid-template-columns:1fr;
  }

  .hb-tee-guide .hb-direct-answer{
    gap:10px;
  }

  .hb-tee-guide .hb-role-split>div{
    padding:24px 0;
  }

  .hb-tee-guide .hb-role-split>div+div{
    padding-left:0;
    border-top:1px solid var(--hb-line);
    border-left:0;
  }

  .hb-tee-guide .hb-product-reverse .hb-product-image,
  .hb-tee-guide .hb-product-reverse .hb-product-copy{
    order:initial;
  }

  .hb-tee-guide .hb-product-image{
    min-height:410px;
  }
}

@media(max-width:540px){
  .hb-tee-guide .hb-lede{
    font-size:18px;
  }

  .hb-tee-guide .hb-toc{
    padding:9px;
    gap:7px;
  }

  .hb-tee-guide .hb-toc a{
    flex:1 1 calc(50% - 7px);
    padding:10px 6px;
    white-space:normal;
  }

  .hb-tee-guide .hb-product-image{
    min-height:350px;
  }

  .hb-tee-guide .hb-product-image .hb-img-main,
  .hb-tee-guide .hb-product-image .hb-img-hover{
    padding:10px;
  }

  .hb-tee-guide .hb-product-copy{
    padding:26px 22px 30px;
  }

  .hb-tee-guide .hb-buying-advice{
    padding:23px 21px;
  }

  .hb-tee-guide .hb-final-actions{
    display:grid;
  }

  .hb-tee-guide .hb-final-actions .hb-button{
    width:100%;
    text-align:center;
  }
}

/* ACCESSIBILITY */
@media(prefers-reduced-motion:reduce){
  .hb-tee-guide *,
  .hb-tee-guide *:before,
  .hb-tee-guide *:after{
    scroll-behavior:auto !important;
    transition:none !important;
  }
}
