/* Blog listing and article detail styles */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  overflow: hidden;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.news-card div {
  padding: 20px;
}

.news-card h3 {
  color: var(--blue);
  font-size: 27px;
}

.article-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.article-wrap img {
  width: 100%;
  margin: 24px 0;
  border-radius: 8px;
}

.article-wrap h2 {
  color: var(--blue);
  font-family: DomaineLocal, Georgia, serif;
}


.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 36px;
  align-items: start;
}

.blog-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
  transition: .2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 14px rgba(23, 74, 120, .12);
}

.blog-card > a img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.blog-card-body {
  padding: 20px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
  color: #87959c;
  font-size: 13px;
}

.blog-meta i {
  color: var(--green);
}

.blog-card h2,
.blog-card h3,
.sidebar-widget h3,
.article-content h2 {
  color: var(--blue);
  font-family: DomaineLocal, Georgia, serif;
}

.blog-card h2,
.blog-card h3 {
  margin-bottom: 15px;
  font-size: 24px;
  line-height: 1.15;
}
.blog-card h2 a, .blog-card h3 a{color: var(--green);}
.blog-card p {
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 500;
  \: vertical;
}

.read-more:hover {
  color: var(--green);
}

.pagination-mini {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.pagination-mini a {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  color: var(--blue);
  font-weight: 700;
}

.pagination-mini a.active,
.pagination-mini a:hover {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.blog-sidebar {
  display: block;
  position: sticky;
  top: 112px;
}

.sidebar-widget {
  padding: 20px;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  background: #fff;
  /* box-shadow: 0 12px 28px rgba(23, 74, 120, .06); */
  display: block;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: none;
}

.sidebar-widget h3 {
  margin: 0 0 20px;
  font-size: 28px;
}

.search-box {
  display: grid;
  grid-template-columns: 1fr 42px;
  border: 1px solid #e1e9ec;
  border-radius: 8px;
  overflow: hidden;
}

.search-box input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 12px 14px;
}

.search-box button {
  border: 0;
  color: #fff;
  background: var(--blue);
}

.sidebar-links,
.related-posts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-links a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 17px;
  border-bottom: 1px dashed #cadde5;
  color: var(--text);
  font-weight: 600;
}

.sidebar-links a:hover {
  color: var(--green);
}

.related-post {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 12px;
  align-items: center;
}

.related-post img {
  width: 82px;
  height: 72px;
  border-radius: 8px;
  object-fit: cover;
}

.related-post a {
  color: var(--blue);
  font-weight: 600;
}

.related-post span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.sidebar-booking label {
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

.sidebar-booking input,
.sidebar-booking select {
  outline: 0;
  color: #334d5d;
  background: transparent;
  display: block;
  height: 50px;
  border: 1px solid var(--green);
  border-radius: 8px;
  padding: 10px 15px;
  width: 100%;
  margin-top: 5px;
  font-size: 15px;
}

.tag-list,
.share-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list a,
.article-tag {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  background: #eef6f4;
}

.share-list a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.article-content {
  max-width: 100%;
}

.article-content .article-hero-img {
  width: 100%;
  height: 430px;
  margin: 18px 0 24px;
  border-radius: 8px;
  object-fit: cover;
}

.article-content h1 {
  color: var(--blue);
  font-family: DomaineLocal, Georgia, serif;
  font-size: 52px;
  line-height: 1.08;
}

.article-content h2 {
  margin-top: 28px;
  font-size: 34px;
}

.article-quote {
  margin: 26px 0;
  padding: 24px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--blue);
  font-family: DomaineLocal, Georgia, serif;
  font-size: 25px;
  background: #eef6f4;
}

.article-gallery-inline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.article-gallery-inline img {
  width: 100%;
  height: 240px;
  border-radius: 8px;
  object-fit: cover;
}

.article-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #e1e9ec;
}
