.newsletter-box {
  display: grid;
  grid-template-columns: 2fr 1fr; 
  gap: 1rem; 
}

@media (max-width: 767px) { /* Mobile styles go here */
  .newsletter-box{
        margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }
}
.newsletter-box label {
  display: none;
}

/* Set specific grid column for the second and third child elements */
.newsletter-box > .webform-flex--1:nth-child(1) {
  grid-column: span 2; /* Span two columns (100% width) for the first child */
}

.newsletter-box > .webform-flex--1:nth-child(2),
.newsletter-box > .webform-flex--1:nth-child(3) {
  grid-column: span 1; /* Span one column (80% or 20% width) for the second and third children */
  margin-top: 1rem;
}

.newsletter-box .form-item,
.newsletter-box .form-actions {
  margin-top: 0;
  margin-bottom: 0;
}

/* Media query for mobile */
@media screen and (max-width: 767px) {
  .newsletter-box {
    grid-template-columns: 1fr; /* Single column for mobile */
  }
  .newsletter-box > .webform-flex--1:nth-child(2),
  .newsletter-box > .webform-flex--1:nth-child(3) {
    grid-column: span 2; /* Span two columns (100% width) for the second and third children on mobile */
    margin-top: 1rem;
  }
}



.messages.messages--status {
  margin-top: 4rem !important;
  display: none;
}

.messages.messages--status,
.webform-confirmation {
  max-width: 600px;
  margin: 0 auto;
  z-index: 100;
  position: relative;
}

.webform-confirmation {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}

.webform-confirmation__message {
    color: #325e1c;
    border: 1px solid #c9e1bd;
    background-color: #f3faef;
    box-shadow: -8px 0 0 #77b259;
    padding: 1rem;
    margin-top: 2rem !important;
  margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
}

.region.region-content {
  min-height: 50vh;
}


.webform-confirmation__back {
  display: none;
}