/* Text Image Side by Side Element Styles */

/* * 1. Wrapper Layout
 * We use the element's root for the grid container.
*/
.tissb-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 equal 50% columns */
  gap: 40px; /* Space between columns */
  align-items: center; /* Vertically align content */
  padding-left:0px;
  padding-right:0px;
  max-width:1440px;
  width: calc(100% - 40px);
  margin:0px auto;
  margin-top:80px;
  margin-bottom:80px;
}

/* * 2. Left Column (Image)
*/
.tissb-column-left .tissb-image {
  width: 100%;
  height: auto;
  display: block;
}

/* * 3. Right Column (Text Box)
 * This contains the shadow and blur from your example.
*/
.tissb-column-right {
  background-color: #ffffff; /* White background as in image */
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 10px 25px 0px #0000004d; /* 30% opacity black */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px); /* Safari support */
}

/* * 4. Typography
*/

/* Heading styles */
.tissb-heading {
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 150%;
  letter-spacing: 0.5em; /* 50% of 36px. This is very wide, as requested. */
  text-transform: uppercase;
  color: #36194C;
  margin-top: 0;
  margin-bottom: 24px; /* Space between heading and text */
}

/* Content (WYSIWYG) paragraph styles */
.tissb-content p {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: #000; /* Assuming dark grey text */
  margin-top: 0;
  margin-bottom: 20px; /* Paragraph spacing */
}

/* Ensure the last paragraph has no bottom margin */
.tissb-content p:last-child {
  margin-bottom: 0;
}

/* * 5. Responsive (Tablet & Mobile)
*/

/* Bricks Tablet Breakpoint (and down) */
@media (max-width: 991px) {
  .tissb-wrapper {
    grid-template-columns: 1fr; /* Stack columns */
    gap: 30px;
    margin-left:20px;
    margin-right:20px;
  }
}

/* Bricks Mobile Breakpoint */
@media (max-width: 767px) {
  .tissb-column-right {
    padding: 25px;
  }

  .tissb-heading {
    font-size: 28px;
    letter-spacing: 0.25em; /* Reducing spacing on mobile */
  }

  .tissb-content p {

  font-size: 1em;

}
}