/**
 * css/front-page.css: styles for media front-page page
 *
 * Copyright 2024 San Antonio Buddhist Vihara
 *
 * Author: Sudaraka Wijesinghe <sudaraka@sudaraka.org>
 *
 */

.page-content {
  margin-top: 15px;
}

.featured-blocks {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 275px;
  grid-gap: 0 15px;
}

.featured-block {
  background: #f8f7f3;
  padding: 5px;
  border: 1px solid #eceae4;
  border-radius: 3px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  line-height: 1.428571429;
}

.featured-block > a {
  display: grid;
  align-items: center;
  justify-items: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.featured-block > a:hover {
  opacity: .9;
}

.featured-block strong {
  background-color: var(--hot-color);
}

.featured-block iframe {
  width: 100%;
  height: 100%;
}
