/**
 * About Us Block - Standalone CSS
 * This file can be loaded independently when the about-us block is used
 */
/**
 * SCSS Variables
 * Theme-wide variables for colors, spacing, typography, etc.
 */
/* ============================================
   Theme Colors (Dark Theme)
   ============================================ */
:root {
  /* Dark Theme (Default) */
  --color-bg-primary: #1a1a1a;
  --color-bg-secondary: #2d2d2d;
  --color-bg-tertiary: #3a3a3a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e0e0e0;
  --color-text-muted: #b0b0b0;
  --color-accent: #d4af37;
  --color-accent-hover: #f5d76e;
  --color-border: #404040;
  --color-link: #d4af37;
  --color-link-hover: #f5d76e;
  --color-button-bg: #d4af37;
  --color-button-text: #1a1a1a;
  --color-button-hover: #f5d76e;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
}

/* SCSS Variables for easier manipulation */
/* Typography */
/* Spacing */
/* Breakpoints */
/* Transitions */
.block-about-us {
  padding: 4rem 0;
  background-color: var(--color-bg-primary);
}

.about-content {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.about-title {
  margin-bottom: 1.5rem;
}

.about-description {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
}
.about-description p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
  }
  .about-content.image-left {
    grid-template-columns: 1fr 1fr;
  }
  .about-content.image-right {
    grid-template-columns: 1fr 1fr;
  }
}

/*# sourceMappingURL=about-us.css.map */
