/* Section wrapper */
.video-offer {
  background-color: #29363A;
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
}

/* Centered 2-column layout */
.content-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* Left text */
.page-title {
  font-size: 3.2rem;
  font-weight: 600;
  color: #E6E8E5;
  margin-bottom: 1.5rem;
}

.page-description {
  font-size: 1.25rem;
  line-height: 1.65;
  color: #E6E8E5;
  max-width: 500px;
}

.process-section {
  margin-top: 2.5rem;
  color: #E6E8E5;
}

.process-section h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.2rem;
  font-weight: 600;
}

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

.process-list li {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-list li strong {
  display: inline;
  margin-bottom: 0.3rem;
  font-size: 1.2rem;
  color: #D4AF37;
  font-weight: 600;
}


/* Thumbnail list on right */
.thumbnail-section {
  
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

/* Card styling — SAME AS VIDEO PAGE */
.video-card {
  width: 250px;
  background-color: #E6E8E5;
  border-radius: 15px 15px 10px 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6); /* gold glow */
}

.video-thumb-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect */
  overflow: hidden;
}

.video-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-content {
  padding: 1rem;
  text-align: center;
}

.video-title {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Bio text column */
.button-section {
  padding: .01rem 0;           /* Adjust vertical padding */
  text-align: center;        /* Center content horizontally */
}

.bio-text {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  margin: 0rem auto; /* centers block and adds spacing above/below */
}



.bio-text .btn {
 
  background-color: #D4AF37;  /* gold button */
  color: #fff;
  padding: 0.8rem 2rem;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.bio-text .btn:hover {
  background-color: #b8982e;  /* lighter gold on hover */
}


/* Responsive */
@media (max-width: 900px) {
  .content-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .thumbnail-section {
    align-items: center;
  }

  .page-title {
    font-size: 2.6rem;
  }
}
