/* 
 * Brand Description Section Component Styles
 * Two-column text layout for brand information
 */
.brand-description {
  padding: 64px 0;
  margin-top: 30px;
}

.brand-description .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.description-grid {
  display: flex;
  gap: 126px;
  align-items: start;
}

/* Left Column - Heading */
.description-heading h2 {
  font-size: 40px;
  font-weight: 550;
  font-family: var(--font-family-title);
  line-height: 1.3;
  margin: 0;
  width: 532px;
}

/* Right Column - Description */
.description-text {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  width: 532px;
}

.description-text p {
  margin: 0 0 16px 0;
}

.description-text p:last-child {
  margin-bottom: 0;
}

.description-text h3 {
  font-size: 24px;
  margin: 24px 0 12px 0;
  color: #1a1a1a;
}

.description-text h4 {
  font-size: 20px;
  margin: 20px 0 10px 0;
  color: #1a1a1a;
}

.description-text ul,
.description-text ol {
  margin: 16px 0;
  padding-left: 24px;
}

.description-text li {
  margin-bottom: 8px;
}

.description-text a {
  color: #d4af37;
  text-decoration: underline;
}

.description-text a:hover {
  color: #b8941f;
}

.description-text strong,
.description-text b {
  font-weight: 700;
}

.description-text em,
.description-text i {
  font-style: italic;
}

/* Background Variations */
.brand-description.bg-white {
  background: #fff;
}

.brand-description.bg-light {
  background: #f8f8f8;
}

.brand-description.bg-dark {
  background: #1a1a1a;
}

.brand-description.bg-dark .description-heading h2,
.brand-description.bg-dark .description-text,
.brand-description.bg-dark .description-text p,
.brand-description.bg-dark .description-text h3,
.brand-description.bg-dark .description-text h4 {
  color: #fff;
}

.brand-description.bg-dark .description-text a {
  color: #e8c55a;
}

.brand-description.bg-dark .description-text a:hover {
  color: #d4af37;
}

/* Responsive - Tablet */
@media screen and (max-width: 1040px) {
  .description-grid {
    gap: 60px;
  }

  .description-heading h2 {
    font-size: 32px;
  }

  .description-text p {
    font-size: 17px;
  }

  .description-heading h2,
  .description-text {
    width: unset;
  }
}

/* Responsive - Mobile */
@media (max-width: 640px) {
  .brand-description {
    padding: 50px 0;
  }

  .brand-description .container {
    padding: 0 20px;
  }

  .description-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .description-heading h2 {
    font-size: 28px;
  }

  .description-text p {
    font-size: 16px;
  }
}