/* Layout Wrapper */
.haas-grid {
  display: flex;
  gap: 30px;
  margin-top: 25px;
  align-items: flex-start;
}

/* Left Box with 1px Black Border */
.haas-summary-box {
  flex: 0 0 25%;
  border: 1px solid #000000; /* Requested 1px black border */
  padding: 20px;
  background-color: #ffffff;
  border-radius: 4px;
  margin-top: 10px;
}

.summary-title {
  font-weight: bold;
  font-size: 1.05em;
  margin-bottom: 15px;
  color: #111111;
  line-height: 1.4;
}

.summary-list {
  padding-left: 20px;
  margin: 0;
  list-style: none;
}

.summary-list li {
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 12pt;
  line-height: 1.4;
  color: #222222;
}

/* Right Details Column */
.haas-details-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.detail-group {
  border-left: 3px solid #e67e22; /* Primary brand accent line */
  padding-left: 15px;
}

.detail-group ul {
  margin: 0;
  padding-left: 18px;
}

.detail-group li {
  margin-bottom: 6px;
  font-size: 0.95em;
  line-height: 1.5;
  color: #333333;
}

/* Responsive adjustment for small screens */
@media (max-width: 768px) {
  .haas-grid {
    flex-direction: column;
  }
  .haas-summary-box {
    width: 100%;
    box-sizing: border-box;
  }
}
