/* Daily Dura - Blogs Page Custom Styles */

.page-banner-hero.page-banner-blog {
  color: #FFFFFF;
  padding: 3.5rem 1rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(14, 35, 80, 0.72), rgba(21, 94, 66, 0.75)), url('../assets/banner-2.jpg') center/cover no-repeat;
}

.banner-container-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.banner-breadcrumb {
  font-size: 0.95rem;
  color: #CBD5E1;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.banner-breadcrumb a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.2s ease;
}

.banner-breadcrumb a:hover {
  color: #F48024;
}

.banner-breadcrumb .separator {
  margin: 0 8px;
  opacity: 0.6;
}

.banner-breadcrumb .active-crumb {
  color: #FFFFFF;
  font-weight: 600;
}

.banner-main-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

/* Featured Section - Home Page Layout Style (Left Content, Right Rounded Image Card) */
.featured-hero-home-style {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.featured-home-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-home-img-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(14, 35, 80, 0.09);
  border: 1px solid #E2E8F0;
  height: 420px;
  background: #FFFFFF;
}

.featured-home-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.featured-home-img-card:hover .featured-home-img {
  transform: scale(1.05);
}

.featured-badge-pill {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #155E42;
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 2;
}

.featured-post-details {
  padding: 3rem 2.5rem;
}

.featured-meta-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #64748B;
  font-weight: 600;
}

.featured-category-tag {
  color: #155E42;
  background: #E6F7EF;
  padding: 4px 12px;
  border-radius: 12px;
  font-weight: 700;
}

.featured-title-heading {
  font-size: 1.7rem;
  font-weight: 800;
  color: #0E2350;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.featured-excerpt-text {
  color: #000000;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.featured-perks-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.featured-perk-item {
  background: #F1F5F9;
  color: #0E2350;
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 0.825rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #E2E8F0;
}

.featured-perk-item i {
  color: #155E42;
}

.featured-action-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary-featured {
  background: #155E42;
  color: #FFFFFF;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 94, 66, 0.25);
}

.btn-primary-featured:hover {
  background: #1E7956;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(21, 94, 66, 0.35);
}

.btn-secondary-featured {
  background: #FFFFFF;
  color: #0E2350;
  border: 1.5px solid #CBD5E1;
  padding: 11px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.btn-secondary-featured:hover {
  background: #F8FAFC;
  border-color: #0E2350;
}

/* Articles Grid Section */
.blog-grid-3col {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

.blog-card-item {
  background: #FFFFFF;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(14, 35, 80, 0.05);
  border: 1px solid #E2E8F0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(14, 35, 80, 0.12) !important;
}

.blog-card-img-box {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.blog-card-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-card-item:hover .blog-card-thumbnail {
  transform: scale(1.06);
}

.blog-card-category-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  color: white;
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.blog-card-post-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0E2350;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-card-post-excerpt {
  color: #000000;
  font-size: 0.925rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-read-link {
  font-weight: 700;
  color: #155E42;
  font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.blog-card-read-link:hover {
  gap: 10px;
}

/* Newsletter Section */
.newsletter-banner-section {
  padding: 4rem 0;
  background: #0E2350;
  color: white;
  position: relative;
  overflow: hidden;
}

.newsletter-content-box {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-sub-label {
  color: #F48024;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 0.5rem;
}

.newsletter-main-heading {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.newsletter-description {
  color: #CBD5E1;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.newsletter-form-inline {
  display: flex;
  gap: 0.75rem;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-email-input {
  flex-grow: 1;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  border: 1px solid #334155;
  outline: none;
  font-size: 0.95rem;
  background: #FFFFFF;
  color: #0F172A;
}

.btn-newsletter-subscribe {
  background: #155E42;
  color: white;
  border: none;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.3s ease;
  box-shadow: 0 4px 15px rgba(21, 94, 66, 0.4);
}

.btn-newsletter-subscribe:hover {
  background: #1E7956;
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: #94A3B8;
  display: block;
  margin-top: 1rem;
}

@media (max-width: 992px) {
  .featured-hero-home-style {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
  .featured-home-img-card {
    height: 350px !important;
  }
  .blog-grid-3col {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .blog-grid-3col {
    grid-template-columns: 1fr !important;
  }
  .newsletter-form-inline {
    flex-direction: column !important;
  }
  .banner-main-title {
    font-size: 1.75rem !important;
  }
}
