/* CSS Document */

.tool-hero {

height:700px;
margin-bottom:50px;
background-color:#000;
color: var(--main-color);

box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3)
}


.tool-hero-container {

position: relative;
height: 100%;
width:1000px;
margin-left:auto;
margin-right:auto;
padding-left:20px;
padding-right:20px;
padding-top:2em;
}



.tool-series-name{
  font-size:2em;
  font-weight:200;
  position: relative;
  z-index: 1;
}


.tool-name{
font-size:3em;
font-weight:800;
margin-top:-.25em;
}

.tool-subtitle{
font-size:2em;
margin-top:-.3em;
}


.tool-hero-image{
width:300px;
}

.tool-product-box{
  margin-top:40px;
  width:50%;
  flex-direction: column;  
  align-items: center;   /* horizontal centering */
  text-align: center;    /* center text inside items */
  justify-content: flex-start; /* center horizontally */

}
.tool-product-cta-container{
margin-top:1em;
margin-bottom:1em;    
}

/*Collab box */

.tool-collab-box{
  background-color:#000;
  border:1px solid var(--main-color);
  border-radius:10px;
  position: absolute;
  top:20%;
  right:100px;
  width:260px;
  height:350px;
  display: flex;
  flex-direction: column;
  
  align-items: center;   /* horizontal centering */
  text-align: center;    /* center text inside items */
  overflow: hidden;        /* crop anything that spills out */
  justify-content: flex-start; /* center horizontally */
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/*subtle shift effect */
.tool-collab-box::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(255,255,255,0.05); /* very subtle white overlay */
  pointer-events: none; /* so it doesn't block clicks */
}

.tool-collab-image {
width:80%;

}


.tool-collab-title{
font-weight:200;
font-size:1.25em;
margin-top:1em;
  color: var(--main-color);
margin-bottom:1em;
position:relative;
z-index:1;
}
.tool-collab-button-container{
margin-top:1em;
margin-bottom:1em;
position:relative;
z-index:1;
}

.tool-collaborator-name{
  font-size:1.25em;
  font-weight:800;

}
.tool-collab-link{
  font-weight:inherit;
  color:var(--main-color);
  font-style:italic;
  font-size:.75em;
}

.tool-intro{
font-size:1.25em;
}

.tool-content-section{
margin-bottom:3em;
}
.tool-content-section p{
line-height:1.75em;
}

.tool-content-title{
margin-bottom:0.5em;
letter-spacing: -0.05em;

}


.tool-content-subtitle{
margin-bottom:1em;
}

.tool-content-heading-3{
margin-bottom:1em;
/*
_border-bottom:1px solid #CCC;

background-color:#DDD;
border-radius:5px;
padding:5px;
padding-left:10px;
*/
}



/*
Feature row
*/

.tool-feature-row {
  display: flex;
  align-items:flex-start;
  gap: 2rem;
}

/* Text takes left half */
.tool-feature-text {
  flex: 1;
}

/* Image takes right half */
.tool-feature-image {
  flex: 1;
  text-align: right;
}

.tool-feature-image img {
  max-width: 100%;
  height: auto;
  border-radius:20px;
}

/* 📱 Mobile: stack vertically */
@media (max-width: 768px) {
  .tool-feature-row {
    flex-direction: column;
  }

  .tool-feature-image {
    text-align: center;
  }
}


