/*
Theme Name: Divi Child Theme
Description: Child Theme for Divi
Author:  Hand to Sky
Template: Divi
Version:  1.0.2
*/

/*
---------------------------
	CSS DIRECTORY
---------------------------
	=Font Setup
	=Global
	=Header
	=Footer
	=Media Queries
*/

/* ====Font Setup /////////////////////////////////////////////////*/

/* ====Global /////////////////////////////////////////////////*/

/* ====Header /////////////////////////////////////////////////*/

/* ====Footer /////////////////////////////////////////////////*/

/* ====HTS Events Loop /////////////////////////////////////////////////*/
.hts-events {
  --hts-events-ink: #023564;
  --hts-events-muted: #555;
  --hts-events-card: #fff;
  --hts-events-gap: 1rem;

  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: var(--hts-events-gap);
}

.hts-events__card {
  display: flex;
  flex-direction: column;
  background: var(--hts-events-card);
}

.hts-events__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hts-events__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hts-events__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.5rem 2rem 2rem;
  border: 1px solid #ddd;
  border-top: 0;
}

.hts-events__meta {
  margin: 0 0 1.25rem;
  color: var(--hts-events-muted);
  font-size: 15px;
}

.hts-events__time {
  margin-left: 1.75rem;
}

.hts-events__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--hts-events-ink);
}

.hts-events__title a {
  color: inherit;
  text-decoration: none;
}

.hts-events__venue {
  margin: 0;
  color: var(--hts-events-muted);
}

.hts-events__link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2.5rem;
  align-self: flex-start;
  color: var(--hts-events-ink);
  text-decoration: none;
}

.hts-events__arrow {
  transition: transform 0.2s ease;
}

.hts-events__link:hover .hts-events__arrow,
.hts-events__link:focus-visible .hts-events__arrow {
  transform: translateX(6px);
}

@media (prefers-reduced-motion: reduce) {
  .hts-events__arrow {
    transition: none;
  }
}

/* ====Media Queries /////////////////////////////////////////////////*/
@media (max-width: 767px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
