.articlegroup-8717019 .btn-toolbar {
    display: none;
}

.articlegroup-8717019 div.caption {border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;;}
    
.articlegroup-8717019 .tws-img--container {
  cursor: not-allowed;
  
}

.articlegroup-8717019 .tws-img--contain {
    object-fit: cover;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
  }

  .video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

/* Accordion */

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc; 
}

.panel {
  padding: 0 18px;
  display: none;
  background-color: white;
  overflow: hidden;
}



.two-column-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100vh; /* Full viewport height */
}

.column {
    flex: 1 1 50%; /* Make each column take 50% of the width */
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-column {
    background-color: #000;
    color: #fff;
    text-align: center;
}

.left-column .content {
    max-width: 80%; /* Limit the width of the content for better readability */
}

.buttons {
    margin-top: 20px;
}

.gold-button {
    background-color: #d4af37;
    color: #000;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.gold-button:hover {
    background-color: #b88a30;
}

.right-column img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image covers the full column height */
}