/* About Page Styles */

/* Hero Section */
.about-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 1200px;
  padding: 160px 20px 0 20px;
  margin: 0 auto;
  width: 100%;
}

.breadcrumb {
  font-size: 1.125rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.9;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb span {
  margin: 0 10px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 1.5rem 0;
  max-width: 600px;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  opacity: 0.9;
}

.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent;
  color: #fff;
  text-decoration: none;
  border: 2px solid #fff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-button:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/* Organization Summary Section */
.organization-summary {
  padding: 80px 0;
  background: #f8f9fa;
}

.summary-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.summary-header {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 30px;
}

.company-logo img {
  max-width: 120px;
  height: auto;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin: 0;
  line-height: 1.2;
}

.summary-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}

.summary-text p {
  margin-bottom: 20px;
}

/* Why Manilom Section */
.why-manilom {
  padding: 80px 0;
  background: white;
}

.why-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.why-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.why-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

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

.why-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #666;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}

.why-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Key Features Section */
.key-features {
  padding: 80px 0;
  background: #f8f9fa;
}

.key-features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 15px;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Vision Mission Section */
.vision-mission {
  padding: 80px 0;
  background: white;
}

.vision-mission .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.vm-card {
  background: #f8f9fa;
  padding: 50px 40px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vision-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
}

.mission-card {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  color: white;
}

.vm-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.vm-icon i {
  font-size: 2rem;
  color: white;
}

.vm-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.vm-subtitle {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  opacity: 0.9;
}

.vm-quote {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.4;
}

.vm-description {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* Core Values Section */
.core-values {
  padding: 80px 0;
  background: #f8f9fa;
}

.core-values .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.core-values .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  background: white;
  padding: 40px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 1.8rem;
  color: white;
}

.value-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

/* Motto Section */
.motto-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

.motto-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.motto-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: white;
}

.motto-text {
  font-size: 2rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.4;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background: white;
}

.benefits-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefits-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.benefit-item {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: white;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 1.8rem;
  color: white;
}

.benefit-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-color);
  line-height: 1.3;
}

/* Leadership Section */
.leadership-section {
  padding: 80px 0;
  background: white;
}

.leadership-section .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}

.leader-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.leader-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
  z-index: 1;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s ease;
  filter: brightness(0.9);
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
  filter: brightness(1);
}

.leader-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  text-align: center;
  background: transparent;
  z-index: 2;
}

.leader-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.leader-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.leader-description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-color);
  font-weight: 400;
  margin: 0;
}

/* Placeholder for missing images */
.leader-image img[src="#"], 
.leader-image img[src=""],
.leader-image img[alt]:not([src]) {
  opacity: 0;
}

.leader-image:has(img[src="#"])::before,
.leader-image:has(img[src=""])::before {
  content: '👤';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 4rem;
  color: var(--primary-color);
  z-index: 0;
  opacity: 0.6;
}

/* History Strategy Section */
.history-strategy {
  padding: 80px 0;
  background: white;
}

.history-strategy .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.history-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.history-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.history-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 40px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-year {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.timeline-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 10px;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* Strategy Section */
.strategy-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.strategy-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.strategy-section .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.strategy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.strategy-intro {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 40px;
  text-align: center;
}

.strategy-paragraph {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
  text-align: left;
}

.strategy-paragraph strong {
  color: var(--primary-color);
  font-weight: 600;
}

.strategy-conclusion {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-top: 40px;
  padding: 30px;
  background: white;
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
  text-align: center;
}

/* Legal Status Section */
.legal-status {
  padding: 80px 0;
  background: white;
}

.legal-status .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.legal-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 30px;
  line-height: 1.2;
}

.legal-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.legal-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

/* Text Center Utility */
.text-center {
  text-align: center;
  margin-bottom: 60px;
}

.text-center .section-title {
  margin-bottom: 20px;
}

.text-center .leadership-subtitle {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .leadership-section {
    padding: 60px 0;
  }

  .leadership-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .leader-image {
    height: 400px;
  }

  .leader-info {
    padding: 25px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }

  .why-content,
  .history-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .summary-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-content {
    padding: 140px 20px 0 20px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: 80vh;
    min-height: 550px;
  }

  .hero-content {
    padding: 120px 15px 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .breadcrumb {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .motto-text {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .leadership-section {
    padding: 40px 0;
  }

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

  .leader-image {
    height: 350px;
  }

  .leader-info {
    padding: 20px;
  }

     .leader-name {
     font-size: 1.3rem;
     color: var(--primary-color);
   }

   .leader-title {
     font-size: 0.8rem;
     color: var(--accent-color);
   }

   .leader-description {
     font-size: 0.85rem;
     color: var(--text-color);
   }

  .leader-card {
    margin: 0 10px;
  }

  .leader-image {
    height: 250px;
  }

  .leader-info {
    padding: 20px;
  }

  .leader-name {
    font-size: 1.2rem;
  }

  .leader-title {
    font-size: 0.95rem;
  }

  .leader-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .vm-card {
    padding: 35px 25px;
  }

  .feature-card,
  .value-item,
  .benefit-item {
    padding: 30px 20px;
  }

  .timeline {
    padding-left: 20px;
  }

  .timeline-item {
    padding-left: 30px;
  }

  .vm-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .summary-header {
    padding: 0 15px;
  }

  .why-content,
  .history-content {
    gap: 35px;
    padding: 0 15px;
  }

  .strategy-content,
  .legal-content {
    padding: 0 15px;
  }

  .organization-summary,
  .why-manilom,
  .key-features,
  .vision-mission,
  .core-values,
  .motto-section,
  .benefits-section,
  .history-strategy,
  .strategy-section,
  .legal-status {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 70vh;
    min-height: 450px;
  }

  .hero-content {
    padding: 100px 10px 0 10px;
  }

  .hero-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .hero-button {
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .motto-text {
    font-size: 1.2rem;
    line-height: 1.3;
    padding: 0 10px;
  }

  .features-grid,
  .values-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .leadership-section {
    padding: 30px 0;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-image {
    height: 400px;
  }

  .leader-info {
    padding: 20px;
  }

     .leader-name {
     font-size: 1.2rem;
     color: var(--primary-color);
   }

   .leader-title {
     font-size: 0.75rem;
     color: var(--accent-color);
   }

   .leader-description {
     font-size: 0.8rem;
     color: var(--text-color);
   }

  .organization-summary,
  .why-manilom,
  .key-features,
  .vision-mission,
  .core-values,
  .motto-section,
  .benefits-section,
  .leadership-section,
  .history-strategy,
  .strategy-section,
  .legal-status {
    padding: 50px 0;
  }

  .leader-card {
    margin: 0 10px;
    border-radius: 12px;
  }

  .leader-image {
    height: 220px;
  }

  .leader-info {
    padding: 18px 15px;
  }

  .leader-name {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .leader-title {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .leader-description {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .vm-card {
    padding: 25px 20px;
    border-radius: 12px;
  }

  .feature-card,
  .value-item,
  .benefit-item {
    padding: 25px 15px;
    border-radius: 8px;
  }

  .summary-header,
  .why-content,
  .history-content,
  .strategy-content,
  .legal-content {
    padding: 0 10px;
  }

  .summary-text p,
  .why-description,
  .history-description,
  .strategy-paragraph,
  .legal-description {
    font-size: 1rem;
    line-height: 1.6;
  }

  .timeline {
    padding-left: 15px;
  }

  .timeline-item {
    padding-left: 25px;
    margin-bottom: 30px;
  }

  .company-logo img {
    max-width: 100px;
  }

  .feature-icon,
  .value-icon,
  .benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .feature-icon i,
  .value-icon i,
  .benefit-icon i {
    font-size: 1.6rem;
  }

  .vm-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }

  .vm-icon i {
    font-size: 1.8rem;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  .about-hero {
    height: 65vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 90px 8px 0 8px;
  }

  .hero-title {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
  }

  .hero-button {
    padding: 8px 20px;
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .motto-text {
    font-size: 1.1rem;
    padding: 0 8px;
  }

  .leader-image {
    height: 350px;
  }

  .leader-info {
    padding: 15px;
  }

     .leader-name {
     font-size: 1.1rem;
     color: var(--primary-color);
   }

   .leader-title {
     font-size: 0.7rem;
     color: var(--accent-color);
   }

   .leader-description {
     font-size: 0.75rem;
     color: var(--text-color);
   }

  .leader-card {
    margin: 0 8px;
  }

  .leader-image {
    height: 200px;
  }

  .leader-info {
    padding: 15px 12px;
  }

  .leader-name {
    font-size: 1rem;
  }

  .leader-title {
    font-size: 0.85rem;
  }

  .leader-description {
    font-size: 0.8rem;
  }

  .vm-card,
  .feature-card,
  .value-item,
  .benefit-item {
    padding: 20px 12px;
  }

  .summary-header,
  .why-content,
  .history-content,
  .strategy-content,
  .legal-content {
    padding: 0 8px;
  }

  .container {
    padding: 0 8px;
  }

  .feature-icon,
  .value-icon,
  .benefit-icon {
    width: 55px;
    height: 55px;
  }

  .feature-icon i,
  .value-icon i,
  .benefit-icon i {
    font-size: 1.4rem;
  }

  .vm-icon {
    width: 65px;
    height: 65px;
  }

  .vm-icon i {
    font-size: 1.6rem;
  }

  .company-logo img {
    max-width: 90px;
  }
} 