/* Styles specific to the also-by-us page. Shared tokens and site chrome
   (nav/footer) live in styles.css. */

h1 { font-size: 1.8rem; margin: 0 0 6px; }
.intro { color: var(--muted); font-size: 0.95rem; max-width: 640px; margin: 0 0 30px; }

.also-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }
.also-card {
  display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; background: var(--card); text-decoration: none; color: inherit;
  transition: border-color 0.15s ease;
}
.also-card:hover { border-color: var(--accent); }
.also-card-img { width: 100%; aspect-ratio: 1200 / 630; object-fit: cover; display: block; background: var(--accent-soft); }
.also-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.also-card-body h3 { margin: 0; font-size: 1.1rem; }
.also-tagline { margin: 0; font-size: 0.82rem; color: var(--muted); font-style: italic; }
.also-desc { margin: 0; font-size: 0.85rem; color: var(--muted); line-height: 1.45; flex: 1; }
.also-cta { font-size: 0.85rem; font-weight: 600; color: var(--accent); margin-top: 4px; }
