/*
  Azin Pash Tehran - Blog-Details Page Styles
*/

.single-blog-details {
  border: 1px solid var(--az-border-light);
  border-radius: 14px;
  box-shadow: var(--az-shadow);
  overflow: hidden;
}

.single-blog-thumb {
  position: relative;
  overflow: hidden;
}

.single-blog-thumb img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .single-blog-thumb img {
    height: 260px;
  }
}

.single-blog-details-inner {
  padding: 26px 22px 22px;
}

.blog-page-title {
  position: relative;
  margin: 0 0 12px 0;
  color: var(--az-text);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.45;
  letter-spacing: -0.3px;
  padding-bottom: 14px;
}

@media (max-width: 576px) {
  .blog-page-title {
    font-size: 22px;
  }
}

.blog-page-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 96px;
  height: 3px;
  background: #b0a9b0cc;
  border-radius: 999px;
}

.blog-page-title::after {
  content: "";
  position: absolute;
  bottom: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--az-accent);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--az-muted);
  font-size: 14px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 14px;
  margin-bottom: 18px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.blog-meta i {
  color: var(--az-accent);
}

.single-blog-content {
  color: var(--az-text-2);
  font-size: 16.5px;
  line-height: 1.95;
}

.single-blog-content p {
  margin: 0 0 16px 0;
  text-align: justify;
}

.single-blog-content h2,
.single-blog-content h3 {
  color: var(--az-text);
  font-weight: 800;
  line-height: 1.5;
  margin: 26px 0 10px 0;
}

.single-blog-content h2 {
  font-size: 22px;
}

.single-blog-content h3 {
  font-size: 19px;
}

.single-blog-content ul {
  margin: 12px 0 18px 0;
  padding: 0;
  list-style: none;
}

.single-blog-content ul li {
  position: relative;
  margin-bottom: 10px;
}

.single-blog-content ul li::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(206, 51, 51, 0.16);
  box-shadow: inset 0 0 0 2px rgba(206, 51, 51, 0.55);
}

/* ===== Quote ===== */

.az-quote {
  margin: 20px 0;
  background: var(--az-soft);
  border: 1px solid #e9eef6;
  border-radius: 12px;
  padding: 16px 18px;
  color: var(--az-text);
  font-weight: 600;
  line-height: 1.9;
}

/* ===== Tags ===== */

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
}

.blog-tags strong {
  color: var(--az-text);
  font-size: 14px;
}

.blog-tags a {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(206, 51, 51, 0.08);
  border: 1px solid rgba(206, 51, 51, 0.18);
  color: var(--az-text);
  text-decoration: none;
  font-size: 13px;
  transition: 220ms ease;
}

/* ===== Social ===== */

.blog-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.blog-social strong {
  color: var(--az-text);
  font-size: 14px;
}

.blog-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: var(--az-text);
  background: #fff;
  border: 1px solid #e6e6e6;
  transition: 220ms ease;
}

.blog-social a:hover {
  border-color: rgba(206, 51, 51, 0.35);
  color: var(--az-accent);
}
