/* About Us & Press pages — matches homepage brand tokens */
.brand-page {
  font-family: "Poppins", sans-serif;
  color: #1a2b48;
  line-height: 1.6;
}

.brand-page .page-hero {
  padding: 48px 0 56px;
  background: linear-gradient(135deg, #fff5f2 0%, #fff9f2 100%);
  text-align: center;
  margin-top: -1.5rem;
}

.brand-page .page-hero-profile img {
  width: 100%;
  max-width: 175px;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  border: 6px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: rotate(-3deg);
  margin-bottom: 24px;
}

.brand-page .page-hero-badge {
  display: inline-block;
  background: #f97b5f;
  color: white;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.brand-page .page-hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1.2;
}

.brand-page .page-hero .lead {
  max-width: 640px;
  margin: 0 auto;
  color: #6b7280;
  font-size: 1.1rem;
}

.brand-page .flag-icon {
  width: 1.25em;
  height: auto;
  vertical-align: -0.15em;
  margin: 0 2px;
}

.brand-page .content-section {
  padding: 56px 0;
}

.brand-page .content-section.alt-bg {
  background: #f8f9fa;
}

.brand-page .section-header {
  margin-bottom: 32px;
}

.brand-page .section-header h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 8px;
  position: relative;
  display: inline-block;
}

.brand-page .section-header h2::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 3px;
  background: #f97b5f;
  bottom: -8px;
  left: 0;
}

.brand-page .section-header p {
  color: #6b7280;
  margin: 16px 0 0;
  max-width: 640px;
}

.brand-page .story-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.brand-page .story-image-block {
  max-width: 100%;
}

.brand-page .story-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  margin: 0 auto;
}

.brand-page .story-image img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.brand-page .story-caption {
  max-width: 420px;
  margin: 14px auto 0;
  padding: 12px 16px;
  background: #fff5f2;
  border-radius: 12px;
  color: #1a2b48;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  border: 1px solid rgba(249, 123, 95, 0.2);
}

.brand-page .story-text p {
  color: #4b5563;
  margin-bottom: 1rem;
}

.brand-page .what-we-do-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.brand-page .what-we-do-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: white;
  padding: 16px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.brand-page .what-we-do-list .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

.brand-page .what-we-do-closing {
  color: #6b7280;
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.brand-page .values-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.brand-page .value-tile {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-page .value-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(249, 123, 95, 0.15);
}

.brand-page .value-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  font-size: 1.75rem;
  background: linear-gradient(135deg, #fff5f2 0%, #ffe6e1 100%);
  border-radius: 16px;
}

.brand-page .value-tile h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #1a2b48;
}

.brand-page .value-tile p {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
  line-height: 1.55;
}

.brand-page .cta-section {
  background: linear-gradient(135deg, #f97b5f 0%, #e86a4e 100%);
  padding: 56px 0;
  color: white;
  text-align: center;
}

.brand-page .cta-section h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 0 0 12px;
}

.brand-page .cta-section p {
  margin: 0 0 24px;
  opacity: 0.95;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.brand-page .cta-section .btn-light {
  background: white;
  color: #f97b5f;
  border: none;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease;
}

.brand-page .cta-section .btn-light:hover {
  transform: translateY(-2px);
  color: #e86a4e;
}

.brand-page .cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 16px;
}

.brand-page .cta-links a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  font-size: 0.95rem;
}

/* Press page */
.brand-page .press-intro {
  max-width: 640px;
  margin: 0 auto;
  color: #6b7280;
}

.brand-page .press-intro-note {
  max-width: 520px;
  margin: 12px auto 0;
  font-size: 0.85rem;
  color: #9ca3af;
  font-style: italic;
}

.brand-page .press-list {
  display: grid;
  gap: 24px;
}

.brand-page .press-card {
  background: white;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.brand-page .press-card:hover {
  transform: translateY(-2px);
}

.brand-page .press-card.coming-soon {
  border: 2px dashed #f97b5f;
  background: linear-gradient(135deg, #fffaf8 0%, #fff 100%);
  opacity: 1;
}

.brand-page .press-card.coming-soon .press-badge-featured {
  margin-top: 4px;
}

.brand-page .press-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.brand-page .press-logo-wrap {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  min-height: 52px;
  padding: 8px 12px;
  background: #f8f9fa;
  border-radius: 10px;
}

.brand-page .press-logo {
  width: auto;
  height: auto;
  max-height: 36px;
  object-fit: contain;
  object-position: center;
}

.brand-page .press-logo--tuoitre {
  max-width: 96px;
  max-height: 32px;
}

.brand-page .press-logo--vietnamnet {
  max-width: 110px;
  max-height: 28px;
}

.brand-page .press-logo--znews {
  max-width: 72px;
  max-height: 34px;
}

.brand-page .press-logo--baodanang {
  max-width: 100px;
  max-height: 30px;
}

.brand-page .press-logo--vnexpress {
  max-width: 100px;
  max-height: 32px;
}

.brand-page .press-card-meta {
  flex: 1;
  min-width: 0;
}

.brand-page .press-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.brand-page .press-reach {
  margin: 0;
  font-size: 0.88rem;
  color: #6b7280;
  font-weight: 500;
}

.brand-page .press-badge-featured {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #f97b5f 0%, #e86a4e 100%);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

.brand-page .press-outlet {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2b48;
  margin: 0;
}

.brand-page .press-date {
  font-size: 0.9rem;
  color: #6b7280;
}

.brand-page .press-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 16px;
  line-height: 1.4;
}

.brand-page .press-title a {
  color: #1a2b48;
  text-decoration: none;
}

.brand-page .press-title a:hover {
  color: #f97b5f;
}

.brand-page .press-quote {
  font-style: italic;
  color: #4b5563;
  border-left: 3px solid #f97b5f;
  padding-left: 16px;
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.brand-page .press-read-more {
  font-size: 0.95rem;
  font-weight: 500;
  color: #f97b5f;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.brand-page .press-read-more:hover {
  color: #e86a4e;
}

.brand-page .press-badge-soon {
  display: inline-block;
  background: #fff5f2;
  color: #f97b5f;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.brand-page .media-inquiries {
  background: #1a2b48;
  color: white;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}

.brand-page .media-inquiries h2 {
  font-size: 1.5rem;
  margin: 0 0 12px;
}

.brand-page .media-inquiries p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 8px;
}

.brand-page .media-inquiries a {
  color: #f97b5f;
  font-weight: 600;
}

.brand-page .media-inquiries .response-note {
  font-size: 0.9rem;
  margin-top: 16px;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .brand-page .page-hero h1 {
    font-size: 2.75rem;
  }

  .brand-page .story-grid {
    grid-template-columns: minmax(0, 380px) 1fr;
    align-items: start;
    gap: 40px;
  }

  .brand-page .story-image-block {
    max-width: 380px;
  }

  .brand-page .story-image,
  .brand-page .story-caption {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .brand-page .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-page .press-card-top {
    gap: 24px;
  }

  .brand-page .press-logo-wrap {
    width: 148px;
    min-height: 56px;
  }
}

@media (min-width: 992px) {
  .brand-page .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 575px) {
  .brand-page .press-card-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .brand-page .press-logo-wrap {
    width: 100%;
    height: 56px;
  }
}
