/* About Section Alternate Styles (Dark Theme) */

.about-section-alt {
  padding: 10px 0 0 0;
  background: #f8f7ec;
}

.about-container-alt {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
}

.about-card-alt {
  width: 100%;
  background: #2e2b2c;
  border-radius: 8px;
  padding: 32px;
  position: relative;
}

.about-header-alt {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 73px;
}

.about-label-alt {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-dot-alt {
  width: 10px;
  height: 10px;
  background: #ffcc29;
  border-radius: 2px;
  flex-shrink: 0;
}

.about-category-alt {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}

.about-image-wrapper-alt {
  width: 180px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  position: absolute;
  top: 32px;
  right: 32px;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 37px, 100% 100%, 0 100%);
}

.about-image-alt {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content-alt {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: calc(100% - 220px);
}

.about-title-alt {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
  color: #ffffff;
  margin: 0;
}

.about-text-alt {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-text-alt p {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  margin: 0;
}

.about-highlight-alt {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #ffcc29;
}

.about-read-more-alt {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: gap 0.3s ease;
}

.about-read-more-alt:hover {
  gap: 12px;
}

.about-read-more-alt span {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #1f1f1f;
}

.about-arrow-alt {
  width: 24px;
  height: 24px;
  background: #ffcc29;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .about-section-alt {
    padding: 10px 0 0 0;
  }

  .about-container-alt {
    gap: 48px;
  }

  .about-card-alt {
    padding: 32px 16px;
  }

  .about-header-alt {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
  }

  .about-image-wrapper-alt {
    position: static;
    width: 100%;
    height: 181px;
    clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 28px, 100% 100%, 0 100%);
  }

  .about-content-alt {
    max-width: 100%;
  }

  .about-title-alt {
    font-size: 24px;
  }

  .about-text-alt {
    gap: 24px;
  }
}
