p#bzdropcap::first-letter {
  color: #2a3039;
  float: left;
  font-size: 58px;
  height: 50px;
  line-height: 50px;
  padding: 4px 6px 0 0;
}

img.card {
  max-width: 100%;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}

.article {
  padding: 24px;
 }

.card {
  padding: 16px;
  background-color: white;
  border: 1px solid var(--bs-gray-200);
}

body {
  background-color: var(--bs-gray-100);
}

.bg-orange {
  background-color: var(--bs-orange);
}

.banner-image{
  /*background-image: url('../img/photo-1541888946425-d81bb19240f5.jpg');*/
  min-height:100%;
  background:linear-gradient(0deg, rgba(218, 210, 216, 0.7), rgba(20, 54, 66, 0.8)), url('../img/photo-1541888946425-d81bb19240f5.jpg');
  background-size: cover;
  background-attachment: fixed;
}

.navbar.scrolled {
  background-color: #143642;
}

.section-gap {
  padding: 120px 0;
}

a {
  color: #EC9A29;
  font-weight: 600;
}
a:hover {
  color: #A8201A;
}

.single-offered {
  background-color: white;
}

.thumb {
  height: 100px;
  width: 120px;
  object-fit: cover;
}

.success-msg {
  color: green;
}

.error-msg {
  color: red;
}

.mt-content {
  margin-top: 12rem;
}

.quill-content .ql-editor {
  padding: 0;
}

.quill-content .ql-editor img {
  max-width: 100%;
  height: auto;
}

.quill-content .ql-editor p,
.quill-content .ql-editor ol,
.quill-content .ql-editor ul,
.quill-content .ql-editor blockquote,
.quill-content .ql-editor pre {
  margin-bottom: 1rem;
}

.blog-page-shell {
  padding: 2rem 0 5rem;
}

.blog-page-intro {
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
  padding: 3rem;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(236, 154, 41, 0.28), transparent 32%),
    linear-gradient(135deg, #143642 0%, #234d59 55%, #2f6670 100%);
  box-shadow: 0 24px 60px rgba(20, 54, 66, 0.18);
  color: #fff;
}

.blog-page-intro::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -110px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.blog-page-kicker {
  margin-bottom: 0.85rem;
  color: #f3c178;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.blog-page-title {
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
}

.blog-page-lead {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(20, 54, 66, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 54, 66, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 154, 41, 0.35);
  box-shadow: 0 22px 44px rgba(20, 54, 66, 0.14);
}

.blog-card__image-link {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(20, 54, 66, 0.14), rgba(236, 154, 41, 0.18));
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card__image {
  transform: scale(1.05);
}

.blog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.blog-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: #fff2df;
  color: #b76400;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.blog-card__title {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.35;
}

.blog-card__title a {
  color: #143642;
  text-decoration: none;
}

.blog-card__title a:hover {
  color: #a8201a;
}

.blog-card__excerpt {
  margin: 0;
  color: #5f6d72;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #ebeff1;
}

.blog-card__avatar {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #143642 0%, #2f6670 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.blog-card__author-block {
  display: flex;
  flex-direction: column;
}

.blog-card__author-label {
  color: #7d8b90;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-card__author-name {
  color: #143642;
  font-weight: 700;
}

.blog-card__meta {
  color: #6f7d81;
  font-size: 0.92rem;
}

.blog-card-empty {
  padding: 2.5rem;
  border: 1px dashed rgba(20, 54, 66, 0.2);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.75);
  text-align: center;
}

.blog-card-empty h2 {
  margin-bottom: 0.6rem;
  color: #143642;
  font-size: 1.5rem;
}

.blog-card-empty p {
  margin: 0;
  color: #5f6d72;
}

@media (max-width: 991.98px) {
  .blog-page-intro {
    padding: 2.5rem 2rem;
  }

  .blog-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .blog-page-shell {
    padding-bottom: 4rem;
  }

  .blog-page-intro {
    padding: 2rem 1.4rem;
    border-radius: 22px;
  }

  .blog-card-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .blog-card__content {
    padding: 1.25rem;
  }
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.blog-pagination .page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 0.5rem 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: white;
  color: #1a3640;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1rem;
}

.blog-pagination .page-btn.active {
  background-color: #1a3640;
  color: white;
  border-color: #1a3640;
}

.blog-pagination .page-btn:hover:not(.active) {
  background-color: #f0f0f0;
  border-color: #bbb;
}

.article-detail-page {
  padding-bottom: 5rem;
}

.article-detail-shell {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid rgba(20, 54, 66, 0.08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(20, 54, 66, 0.08);
}

.article-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
  color: #7b878c;
  font-size: 0.92rem;
}

.article-detail-breadcrumb a {
  color: #ec9a29;
  text-decoration: none;
}

.article-detail-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ebeff1;
}

.article-detail__tag {
  margin-bottom: 1rem;
}

.article-detail-title {
  margin: 0 0 1.1rem;
  color: #143642;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.article-detail-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-detail__avatar {
  width: 48px;
  height: 48px;
  font-size: 1rem;
}

.article-detail-meta__text {
  display: flex;
  flex-direction: column;
  color: #66757a;
}

.article-detail-meta__text strong {
  color: #143642;
  font-size: 1rem;
}

.article-detail-featured {
  overflow: hidden;
  margin: 0 0 2rem;
  border-radius: 18px;
  background: #dce8ed;
}

.article-detail-featured img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-detail-content {
  color: #2f3f44;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-detail-content .ql-editor {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.article-detail-content .ql-editor blockquote {
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  border-left: 3px solid #ec9a29;
  border-radius: 0 10px 10px 0;
  background: #fff9f5;
  color: #59666b;
  font-style: italic;
}

.article-detail-related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ebeff1;
}

.article-detail-related__title {
  margin-bottom: 1.5rem;
  color: #143642;
  font-size: 1.25rem;
  font-weight: 700;
}

.article-detail-related__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.article-detail-related__card {
  padding: 1.5rem;
  border: 1px solid #e0e6e9;
  border-radius: 12px;
  background: #f8f9fa;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background-color 0.28s ease;
}

.article-detail-related__card:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 10px 20px rgba(20, 54, 66, 0.1);
}

.article-detail-related__link {
  display: block;
  margin-bottom: 0.5rem;
  color: #143642;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
}

.article-detail-related__link:hover {
  color: #a8201a;
}

.article-detail-related__meta {
  color: #7b878c;
  font-size: 0.88rem;
}

@media (max-width: 767.98px) {
  .article-detail-page {
    padding-bottom: 4rem;
  }

  .article-detail-shell {
    padding: 1.5rem;
    border-radius: 18px;
  }

  .article-detail-related__grid {
    grid-template-columns: 1fr;
  }
}
