/*
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 /////////////////////////////////////////////////*/

/* //// Posts /////////////////////////////////////////////////*/
.archive-posts {
  padding: 2rem 0;
}

.archive-posts-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.archive-posts-inner .entry-link {
  background: #0f421c;
  overflow: hidden;
  transition: transform 0.3s ease;
  display: flex;
  aspect-ratio: 1 / 1;
  border-radius: 0px;
  color: #fff;
  background-size: 100%;
  background-position: center;
  transition: background-size 0.3s ease;
}

.entry-link .overlay {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.65);
  width: 100%;
}

.archive-posts-inner .entry-link:hover {
  background-size: 110%;
}

.entry-content {
  display: flex;
  flex-direction: column;
}

.entry-link .date,
.entry-link .categories {
  font-size: 1rem;
}

.entry-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
}

.entry-link .title {
  font-size: max(1.5rem, 2vw);
  color: #fff;
  transition: all 0.3s ease;
}

.archive-posts-inner .entry-link:hover .title {
  color: #ccc;
}

.entry-inner .divider {
  border-top: 1px solid #fff;
  display: block;
  margin-block: 20px 5px;
}

/* Pagination styling */
.pagination {
  margin-top: 3rem;
  text-align: center;
}

.pagination .page-numbers {
  display: inline-block;
  margin: 0 0.3rem;
  padding: 0.5rem 0.8rem;
  background: #f1f1f1;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.9rem;
}

.pagination .current,
.pagination .page-numbers:hover {
  background: #333;
  color: #fff;
}

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