/* About Block Styles */
.about {
  padding: var(--section-padding) 0;
  background-color: var(--bg-secondary);
}

.about__items {
  display: flex;
  flex-direction: column;
  gap: var(--gap-8);
  margin-top: var(--gap-6);
}

.about__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-6);
  align-items: center;
  background: var(--bg-primary);
  padding: var(--gap-6);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

.about__item:nth-child(even) {
  direction: rtl;
}

.about__item:nth-child(even) .about__image,
.about__item:nth-child(even) .about__content {
  direction: ltr;
}

.about__image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.about__image picture {
  width: 100%;
  height: 100%;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  flex: 1;
}

.about__content h3 {
  margin-bottom: var(--gap-3);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.about__content p {
  margin-bottom: var(--gap-3);
  line-height: 1.6;
}

.about__content ul,
.about__content ol {
  margin-bottom: var(--gap-3);
  padding-left: var(--gap-5);
}

.about__content li {
  margin-bottom: var(--gap-2);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about__item {
    grid-template-columns: 1fr;
    gap: var(--gap-4);
    text-align: center;
  }

  .about__content ul,
  .about__content ol {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .about__item:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .about__items {
    gap: var(--gap-6);
  }

  .about__item {
    padding: var(--gap-4);
  }

  .about__content h3 {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .about__item {
    padding: var(--gap-3);
  }

  .about__content h3 {
    font-size: 1.125rem;
  }
}
