:root {
  --sac-red: #c9282d;
  --text: #111;
  --radius: 8px;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--text);
  background: #fff;
}

body { padding: 40px 20px; }

/* Layout */
.sac-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
  align-items: start;
}

.sac-left {
  display: flex;
  align-items: flex-start;
  padding-right: 8px;
}

.sac-title {
    font-family: 'Open Sans', sans-serif;
  margin: 0;
  font-weight: 800;
  font-size: 45px;
  line-height: 1.2;
  letter-spacing: 1px;
}

.sac-subtitle1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0px 0 16px 0px;
}

.sac-subtitle2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 32px 0 16px;
}

/* Card Grids */
.sac-gallery-grid,
.sac-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  width: 100%;
}

.sac-gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.sac-gallery-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.sac-gallery-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}

.sac-gallery-card:hover {
  transform: translateY(-4px);
}

.sac-gallery-card:hover img {
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.sac-gallery-card:hover .sac-gallery-title {
  color: var(--sac-red);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 420px) {
  .sac-inner-container {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .sac-title { font-size: 34px; }
  .sac-gallery-grid, .sac-video-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }
  .sac-gallery-card img { height: 120px; }
}
