/* ==================== STYLE SECTIONS ==================== */
.style-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.style-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.style-layout-reverse {
  direction: rtl;
}

.style-layout-reverse > * {
  direction: ltr;
}

.style-title {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}

.style-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.style-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
  width: 60px;
}

.style-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 12px;
}

.style-image {
  aspect-ratio: 1350 / 900;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.style-image object {
  width: 100%;
  height: 100%;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
  .style-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .style-layout-reverse {
    direction: ltr;
  }
  .style-title { font-size: 2.4rem; }
  .style-image { aspect-ratio: 16/10; }
}
