.blog-page-containner {
  display: flex;
  flex-direction: column;
  max-width: 1300px;
  margin: 0 auto;
}

/* Blog Filter Menu */
.blog-filter {
  background-color: #ffcd66;
  font-size: 1.1em;
  font-weight: 900;
  margin-top: 70px;
  padding: 10px 15px;
}

.blog-filter ul li {
  margin: 10px 0;
}
.blog-filter ul {
  max-width: 1300px;
  margin: 0 auto;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 20px;
}

.blog-filter a {
  color: #ee7433;
  font-weight: 900;
  text-decoration: none;
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.blog-post {
  transition: opacity 0.3s ease;
}
.blog-post.hidden {
  display: none;
}

.blog-filter a.active {
  color: #fff;
  border: solid 1px #fff;
  border-radius: 40px;
  padding: 10px 30px;
  font-size: 1.1em;
  font-weight: 900;
}

.blog-filter a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Blog Header */
.blog-header {
  text-align: center;
  padding: 60px 20px;
  margin-top: 15px;
}

.blog-header h1 {
  color: #08386c;
  font-size: 2.5em;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.1;
}

.blog-header h2 {
  font-family: "Playfair Display", Times, serif;
  color: #6e6e6e;
  font-style: italic;
  font-weight: 400;
  font-size: 2em;
}

/* Blog Grid */
.blog-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

/* Blog Post Card */
.blog-post {
  background: white;
  border: 1px solid #d7d7d7;
  transition: transform 0.3s ease;
}

.post-image {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
}

.post-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffcd66;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.post-image:hover::before {
  opacity: 0.5;
}

.post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-image:hover img {
  transform: scale(1.1);
}

.read-more-container {
  display: flex;
  width: 100%;
  justify-content: end;
  margin-top: 30px;
}
.read-more-container img {
  width: 28px;
  padding-top: 3px;
  height: auto !important;
}

.read-more {
  background-color: #ffcd66;
  color: white;
  text-decoration: none;
  padding: 0px 14px 3px 14px;
  font-size: 16px;
  line-height: 16px;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 14px;
  transition: opacity 0.3s ease;
  z-index: 2;
  width: fit-content;
  font-weight: 900;
}

.read-more:hover {
  opacity: 0.7;
}

.post-content {
  padding: 30px;
}

.post-content h3 {
  margin-bottom: 15px;
}

.post-content h3 a {
  color: #08386c;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  transition: color 0.3s ease;
  font-family: Arial, sans-serif;
}

.post-content h3 a:hover {
  opacity: 0.7;
}

.post-meta {
  font-family: "Muli", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85714;
  color: #323232;
}

.post-excerpt {
  font-family: "Muli", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.85714;
  color: #323232;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  border-top: solid 1px #d7d7d7;
  border-bottom: solid 1px #d7d7d7;
  padding: 15px 0 0 0;
}

.pagination a,
.pagination span {
  color: #ee7433;
  text-decoration: none;
  padding: 8px 0px;
  font-size: 16px;
  font-weight: bold;
  font-weight: 400;
  opacity: 1;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  color: #ee7433;
  text-decoration: none;
  background-color: transparent;
  padding-bottom: 12px;
}

.pagination .current {
  border-bottom: solid 3px #323232;
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  font-family: "Playfair Display", Times, serif;
  color: #323232;
  font-style: italic;
  font-weight: 400;
}

.pagination .dots {
  color: #666;
}

.pagination .next {
  color: #ee7433;
  font-family: "Muli", Arial, sans-serif;
  font-weight: 900 !important;
  font-size: 22px;
  font-style: normal;
}

.pagination a {
  font-size: 2em;
  line-height: 1em;
  text-align: center;
  font-family: "Playfair Display", Times, serif;
  font-style: italic;
  font-weight: 400;
}
.pagination a:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* Responsive Design */
@media screen and (max-width: 992px) {
  .blog-filter ul {
    flex-wrap: wrap;
    gap: 15px;
  }
}

@media screen and (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .read-more-container {
    justify-content: left;
  }
  .blog-header {
    padding: 60px 20px;
  }

  .blog-header h1 {
    font-size: 2.2em;
  }

  .blog-header h2 {
    font-size: 1.5em;
  }

  .post-content h3 a {
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .blog-filter {
    padding: 10px 0;
  }

  .blog-filter ul {
    align-items: center;
    text-align: center;
  }

  .pagination {
    gap: 0;
  }

  .pagination a,
  .pagination span {
    padding: 0 0 12px 0;
  }
}
