@charset "UTF-8";

/* ================================
   Mt. SAC Library – Home Layout
   ================================ */

:root {
  --library-primary: #004c97;
  --library-accent: #dc5c00;
  --library-light: #f5f7fa;
  --library-text: #333;
}

/* Hero Search */
.library-hero {
  background: var(--library-light);
  padding: 3rem 1rem;
  text-align: center;
}

.library-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--library-primary);
}

.library-search-form {
  display: flex;
  justify-content: center;
  gap: .5rem;
  flex-wrap: wrap;
}

.library-search-form input {
  width: 60%;
  max-width: 480px;
  padding: .75rem;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.library-search-form button {
  padding: .75rem 1.25rem;
  background: var(--library-accent);
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

/* Feature Grid */
.library-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 3rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

.library-feature {
  background: #fff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-align: center;
}

.library-feature h2 {
  color: var(--library-primary);
  margin-bottom: .5rem;
}


