/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.column-wrapper {
  display: flex;
  flex-direction: column;
}

.column-header {
  padding: 8px;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}

.blank-header {
  background-color: transparent;
  color: transparent;
}

.column {
  padding: 50px;
  height: 300px;
}

/* Column Color Styles */
.column-1,
.column-3 {
  background-color: #EBEAFF;
  color: #321660;
}

.column-2 {
  background-color: #321660;
  color: white;
}

/* Borders for Columns with 40% opacity */
.column-1, .column-2, .column-3 {
  border-top: 1px solid rgba(96, 79, 123, 0.4); /* 40% opacity */
}

/* Column Layout */
.column-1-wrapper {
  width: 33.33%;
}

.column-pair {
  display: flex;
  width: 66.66%;
}

.column-pair .column-wrapper {
  width: 50%;
}

/* Root and Competitor Headers */
.roots-header, .competitor {
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

.roots-header {
  background-color: #321660;
  
}
.roots-header img {max-width: 200px;}


.competitor {
  background-color: #EBEAFF;
  color: #321660;
}

/* Column 1 Header */
.column-1-header {
  background-color: #EBEAFF;
  color: #321660;
  border-top-left-radius: 60px;
  border-top-right-radius: 60px;
}

/* Mobile Styles */
@media screen and (max-width: 600px) {
  .row {
    flex-direction: column;
  }
  
  p {font-size: 15px}
  h4 {line-height: 1.2; }
  
  .column {
  padding: 16px;
    height: 100%;
}
  
  .roots-header, .competitor {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

  .column-1-wrapper {
    width: 100%;
  }

  .column-pair {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }

  .column-pair .column-wrapper {
    width: 50%;
  }

  .column-1 {
    height: 50px;
  }
  
  .hide-mobile {display:none;}
  .full-mobile {
    width: 100%;
  }
