/* ===========================
   Educational Materials Page
   =========================== */

/* Base + shared */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}
.container-narrow {
  margin: 0 auto;
  padding: 0rem 3rem;
}

.edu-header {
  display: flex;
  align-items: center;
}
.edu-title {
  padding: 2.25rem 0 1.25rem;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}
.blue-dot {
  width: 1.5rem;
  height: 1.5rem;
  background: #006699;
  display: inline-block;
  border-radius: 50%;
  margin-left: .5rem;
}

.section-rule {
  border: none;
  border-top: 1px solid #cfcfcf;
  margin: 0;
}
.section-rule--tight { margin-top: 1.25rem; }

/* ===========================
   Intro split (text + photos)
   =========================== */
.intro-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  padding: 1rem 3rem;
}
.intro-left p {
  color: #333;
  line-height: 1.65;
  margin: .6rem 0;
}
.intro-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-content: start;
}
.intro-photo { margin: 0; }
.intro-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ===========================
   Two downloadable tiles row
   =========================== */
.tiles-row {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;   /* middle divider */
  gap: 0;
}
.tiles-divider { background: #cfcfcf; }

.tile1 { padding: 1rem 1.25rem 1rem 0rem; }
.tile2 { padding: 1rem 0rem 1.1rem 1rem; }


/* Tight full-width header: title fills, icon to the right */
.tile-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
}
.tile-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.tile-sub {
  color: #444;
  margin: .25rem 0 0;
  line-height: 1.6;
  font-size: .95rem;
}

/* Slim download icon (no circle) */
.tile-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
}
.tile-download img {
  width: 45px;                     /* matches your reference */
  height: auto;
  display: block;
  transition: opacity .2s ease, transform .2s ease;
}
.tile-download:hover img {
  opacity: 0.7;
  transform: translateY(-1px);
}

/* ===========================
   Lions at the Legation block
   =========================== */
.lions-block { padding: 1rem 3rem; }

/* Tight header: title fills width, icon on the right */
.lions-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  margin-bottom: 1rem;
}
.lions-text { max-width: 100%; }

.lions-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
}
.lions-subtitle {
  margin-top: .35rem;
  font-size: .9rem;
  font-weight: 600;
  color: #333;
}
.lions-subtitle em {
  font-style: italic;
  font-weight: 500;
}

/* Slim download icon (no circle) */
.lions-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  flex: 0 0 auto;
}
.lions-download img {
  width: 45px;
  height: auto;
  display: block;
  transition: opacity .2s ease, transform .2s ease;
}
.lions-download:hover img {
  opacity: 0.7;
  transform: translateY(-1px);
}

/* Lions topics list */
.lions-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.lions-list li { margin: .55rem 0; }
.lions-list a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}
.lions-list a:hover { border-bottom-color: #888; }

/* ===========================
   Responsive
   =========================== */
@media (max-width: 920px) {
  .intro-split { grid-template-columns: 1fr; }
  .intro-right  { grid-template-columns: repeat(2, 1fr); }
  .tiles-row    { grid-template-columns: 1fr; }  /* stack tiles */
  .tiles-divider { display: none; }
  .tile1 { padding: 1rem 1.25rem 1.1rem; }
  .tile2 { padding: 1rem 1.25rem 1.1rem; }


}

@media (max-width: 640px) {
  .container-narrow { padding: 0 1.25rem; }
  .intro-right { grid-template-columns: 1fr; }   /* stack photos on phones */
}
