/* ========================================================================= */
/* PREMIUM 3D LUXURY BLOG LISTING CSS                                       */
/* ========================================================================= */

/* ----------------------------------------- */
/* HERO SECTION                              */
/* ----------------------------------------- */
.hero-container-about {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  background: #0f172a;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  z-index: 1;
}

.hero-container-about > *:not(img):not(.hero-background):not(::after) {
  position: relative;
  z-index: 10;
}

.hero-container-about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.94) 100%);
  z-index: 2;
}

.about-heading {
  z-index: 10;
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.about-heading h1 {
  background-color: transparent;
  font-family: "Roboto Slab", serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.about-heading .breadcrumb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-heading .first-home {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.25s ease;
}

.about-heading .first-home:hover {
  color: #f97316;
}

.about-heading .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

.about-heading .about-tag-a {
  color: #f97316;
  text-decoration: none;
  font-weight: 600;
}

/* ----------------------------------------- */
/* MAIN BLOG CONTAINER LAYOUT                */
/* ----------------------------------------- */
.blog-container {
  max-width: 1360px;
  width: 100%;
  margin: 3.5rem auto 4rem;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

/* Sidebar Filter Area */
.blog-filter {
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

/* Mobile top bar wrapper */
.blog-filter-topbar {
  display: contents;
}

/* ----------------------------------------- */
/* SEARCH BOX                                */
/* ----------------------------------------- */
.blog-filter .search-box {
  background: #ffffff;
  border: 1px solid #ffe8d6;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 4px 0 #ffe0cc, 0 8px 20px rgba(0, 0, 0, 0.04);
}

.blog-filter .search-box form {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.blog-filter .search-box input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  border: 1.5px solid #f1e2d6;
  border-radius: 12px;
  background-color: #faf8f6;
  color: #1e293b;
  font-size: 0.92rem;
  outline: none;
  transition: all 0.25s ease;
}

.blog-filter .search-box input:focus {
  border-color: #f97316;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.blog-filter .search-box button {
  padding: 10px 18px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f58220 0%, #e45d25 100%);
  color: #ffffff;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  box-shadow: 0 3px 0 #943306;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
}

.blog-filter .search-box button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 0 #943306, 0 8px 18px rgba(228, 93, 37, 0.3);
}

.blog-filter .search-box button:active {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #943306;
}

/* ----------------------------------------- */
/* CATEGORIES SIDEBAR CARD                   */
/* ----------------------------------------- */
.blog-category {
  background: #ffffff;
  border: 1px solid #ffe8d6;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 0 #ffe0cc, 0 10px 25px rgba(0, 0, 0, 0.04);
}

.blog-category .category-header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fff2e6;
}

.blog-category h3 {
  font-size: 1.25rem;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.blog-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-category ul li {
  margin: 0;
}

.blog-category ul li a {
  width: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #334155;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 10px 14px;
  text-decoration: none;
  background: #faf8f6;
  border: 1px solid transparent;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-category ul li a span {
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  background: #f1ece7;
  color: #ea580c;
  transition: all 0.25s ease;
}

.blog-category ul li a:hover {
  background-color: #fff7ed;
  color: #ea580c;
  border-color: #fed7aa;
  transform: translateX(4px);
}

.blog-category ul li a:hover span {
  background-color: #fed7aa;
  color: #c8550a;
}

.blog-category ul li a.active,
.category-filter.active {
  background: linear-gradient(135deg, #f58220 0%, #e45d25 100%) !important;
  color: #ffffff !important;
  border-color: #ea580c !important;
  box-shadow: 0 4px 0 #943306, 0 8px 16px rgba(228, 93, 37, 0.25);
  transform: translateX(4px);
}

.blog-category ul li a.active span,
.category-filter.active span {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #ffffff !important;
}

/* ----------------------------------------- */
/* RECENT POSTS SIDEBAR CARD                 */
/* ----------------------------------------- */
.related-blog {
  background: #ffffff;
  border: 1px solid #ffe8d6;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 6px 0 #ffe0cc, 0 10px 25px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
}

.related-blog h3 {
  font-size: 1.25rem;
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #fff2e6;
}

.related-blog .related-blog-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f8fafc;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.related-blog .related-blog-box:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.related-blog .related-blog-box:hover {
  transform: translateX(4px);
}

.related-blog-box .img-related-blog {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #f1f5f9;
}

.related-blog-box .img-related-blog img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-blog .related-blog-box:hover .img-related-blog img {
  transform: scale(1.1);
}

.related-blog-box .related-blog-info {
  flex: 1;
  min-width: 0;
}

.related-blog-box .related-blog-date {
  font-size: 0.78rem;
  color: #ea580c;
  font-weight: 600;
  margin: 0 0 4px 0;
  display: flex;
  align-items: center;
}

.related-blog .related-blog-box,
.related-blog-box h4,
.related-blog .related-blog-box h4,
.related-blog-info h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #000000 !important;
  line-height: 1.35;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.related-blog .related-blog-box:hover h4 {
  color: #ea580c !important;
}

/* ----------------------------------------- */
/* BLOG GRID CONTAINER & 3D LUXURY CARDS     */
/* ----------------------------------------- */
.blog-grid-container {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.blog-box {
  background: #ffffff;
  border: 1px solid #ffe8d6;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 6px 0 #ffe0cc, 0 12px 24px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

.blog-box:hover {
  transform: translateY(-6px);
  border-color: #f97316;
  box-shadow: 0 10px 0 #ea580c, 0 24px 40px rgba(234, 88, 12, 0.16);
}

.blog-box > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.blog-box .blog-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 14px;
  background-color: #f8fafc;
  position: relative;
}

.blog-box .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-box:hover .blog-img img {
  transform: scale(1.08);
}

.blog-box .blog-heading {
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.4;
  margin-bottom: 10px;
  font-family: 'Roboto Slab', serif;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.blog-box:hover .blog-heading {
  color: #ea580c;
}

.blog-box .blog-content {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 18px;
  font-family: 'Roboto', sans-serif;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----------------------------------------- */
/* PREMIUM 3D CUSTOM PAGINATION              */
/* ----------------------------------------- */
.blog-pagination-wrapper {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: 3rem 0 1.5rem 0 !important;
  width: 100% !important;
}

.pagination-custom {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  flex-wrap: wrap !important;
}

.pagination-custom .page-item {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Normal Page Link (Default Inactive Numbers & Prev/Next) */
.pagination-custom .page-item .page-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 46px !important;
  height: 46px !important;
  padding: 0 18px !important;
  border-radius: 14px !important;
  border: 1.5px solid #ffe8d6 !important;
  background: #ffffff !important;
  color: #1e293b !important;
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  text-decoration: none !important;
  box-shadow: 0 4px 0 #ffe0cc, 0 6px 15px rgba(0, 0, 0, 0.04) !important;
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
  cursor: pointer !important;
  outline: none !important;
}

/* Hover on clickable links */
.pagination-custom .page-item:not(.active):not(.disabled) .page-link:hover {
  background: #fff7ed !important;
  color: #ea580c !important;
  border-color: #f97316 !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 0 #fed7aa, 0 12px 22px rgba(234, 88, 12, 0.18) !important;
}

.pagination-custom .page-item:not(.active):not(.disabled) .page-link:active {
  transform: translateY(1px) !important;
  box-shadow: 0 2px 0 #fed7aa !important;
}

/* Active Page Item (Current Page - 3D Orange Luxury Gradient) */
.pagination-custom .page-item.active .page-link {
  background: linear-gradient(135deg, #f58220 0%, #e45d25 50%, #c8550a 100%) !important;
  color: #ffffff !important;
  border-color: #c8550a !important;
  box-shadow: 0 4px 0 #943306, 0 8px 20px rgba(200, 85, 10, 0.35) !important;
  transform: translateY(-2px) !important;
  pointer-events: none !important;
}

/* Disabled State (e.g. Prev on Page 1) */
.pagination-custom .page-item.disabled .page-link {
  background: #f8fafc !important;
  color: #94a3b8 !important;
  border-color: #e2e8f0 !important;
  box-shadow: 0 2px 0 #e2e8f0 !important;
  opacity: 0.65 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
}

/* Prev/Next Chevron animations */
.pagination-custom .page-item .page-link i {
  font-size: 0.85rem !important;
  transition: transform 0.2s ease !important;
}

.pagination-custom .page-item:not(.disabled) .page-link:hover .fa-chevron-left {
  transform: translateX(-3px) !important;
}

.pagination-custom .page-item:not(.disabled) .page-link:hover .fa-chevron-right {
  transform: translateX(3px) !important;
}

/* ----------------------------------------- */
/* RESPONSIVE BREAKPOINTS                    */
/* ----------------------------------------- */

/* Desktop Extra Large (992px to 1200px) */
@media screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-container {
    gap: 20px;
    padding: 0 16px;
  }
  .blog-filter {
    width: 270px;
  }
  .blog-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Tablets (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .hero-container-about {
    min-height: 340px;
  }
  .about-heading h1 {
    font-size: 2.8rem;
  }
  .blog-container {
    gap: 20px;
    padding: 0 16px;
    margin-top: 2rem;
  }
  .blog-filter {
    width: 260px;
  }
  .blog-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .blog-box {
    padding: 16px;
  }
  .blog-box .blog-img {
    height: 180px;
  }
}

/* Small Tablets / Large Phones (576px to 767px) */
@media screen and (min-width: 576px) and (max-width: 767px) {
  .hero-container-about {
    min-height: 300px;
  }
  .about-heading h1 {
    font-size: 2.4rem;
  }
  .blog-container {
    flex-direction: column;
    gap: 24px;
    padding: 0 16px;
    margin-top: 1.75rem;
  }
  .blog-filter {
    width: 100%;
  }
  .blog-grid-container {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

/* Mobile Devices (< 576px) */
@media screen and (max-width: 575.98px) {
  .hero-container-about {
    min-height: 290px;
  }
  .about-heading {
    padding: 30px 15px;
    margin: auto;
  }
  .about-heading h1 {
    font-size: 2.1rem;
    margin-bottom: 8px;
  }
  .about-heading .breadcrumb-pill {
    padding: 5px 14px;
    font-size: 0.85rem;
  }
  .blog-container {
    padding: 0 14px;
    margin-top: 1.25rem;
    margin-bottom: 3rem;
    flex-direction: column;
    gap: 18px;
  }
  .blog-filter {
    width: 100%;
    gap: 12px;
    position: relative;
  }
  .blog-filter-topbar {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }
  .blog-filter .search-box {
    flex: 1;
    min-width: 0;
    padding: 6px 8px;
    border-radius: 14px;
  }
  .blog-filter .search-box input {
    padding: 8px 10px;
    font-size: 0.88rem;
    border-radius: 10px;
  }
  .blog-filter .search-box button {
    padding: 8px 12px;
    font-size: 0.85rem;
    border-radius: 10px;
  }
  .blog-filter .category-mob {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 150px;
    flex-shrink: 0;
    padding: 10px 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1.5px solid #ffe8d6;
    color: #ea580c;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 3px 0 #ffe0cc, 0 4px 12px rgba(234, 88, 12, 0.08);
    transition: all 0.25s ease;
  }
  .blog-filter .category-mob:hover,
  .blog-filter .category-mob:active {
    background: #fff7ed;
    border-color: #f97316;
  }
  .category-popup {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border: 1px solid #fed7aa;
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(234, 88, 12, 0.08);
    padding: 18px;
    animation: popupSlideDown 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
  }
  @keyframes popupSlideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .blog-grid-container {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .blog-box {
    padding: 18px;
    border-radius: 18px;
  }
  .blog-box .blog-img {
    height: 190px;
    margin-bottom: 14px;
  }
  .blog-box .blog-heading {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .blog-box .blog-content {
    font-size: 0.86rem;
    margin-bottom: 14px;
  }
  .blog-card-btn {
    padding: 6px 10px 6px 14px;
    font-size: 0.8rem;
  }
  .pagination-custom {
    gap: 6px !important;
  }
  .pagination-custom .page-item .page-link {
    min-width: 38px !important;
    height: 38px !important;
    padding: 0 12px !important;
    font-size: 0.88rem !important;
    border-radius: 10px !important;
  }
}

/* ---------------------------------- */
/*------------ Blog DETAIL PAGE - Start*/
/* ------------------------------- */

.blog-detail-container{
.date-time-blog{
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  font-size: 14px;
  font-family: "Roboto";
  color: #000;
  margin-top: 1rem;
}
.blog-dtl-img,.blog-sub-img{
  width: -webkit-fill-available;
  overflow: hidden;
  height: 300px; 
}
.blog-dtl-img img, .blog-sub-img img{
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  border-radius: 10px;
}
.blog-detail-container #blog-heading-dtl{
  font-size: 2.375rem;
  font-family: "Roboto Slab";
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}
.blog-detail-container > p{
  font-size: 1rem;
  font-family: "Roboto";
  font-weight: 400;
  line-height: 27px;
  color: #3C3C3C;
}
.blog-detail-container .blog-subheading{
  font-size: 2rem;
  font-family: "Roboto Slab";
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}
.blog-detail-container .blog-sub-img{
  margin: 2rem 0;
}
.blog-detail-container .blog-sub-img2{
  margin: 2rem 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 28px;
}
.blog-sub-img-2a{
  width: 48%;
  width: -webkit-fill-available;
  overflow: hidden;
  height: 400px; 
}
.blog-sub-img-2a > img{
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  border-radius: 10px;
}
.blog-comment-box{
  margin: 3rem 0;
  border: 1px solid #FFA800;
  border-radius: 10px;
  background-color: #FFFCF5;
  padding: 1.6rem 1.2rem;
}
.blog-comment-box > h4{
  color: #FFA800;
  font-size: 1.25rem;
  font-family: "Roboto";
  font-weight: 500;
}
.blog-comment-box > p{
  color: #000;
  font-size: 14px;
  font-family: "Roboto";
  font-weight: 400;
  line-height: 16px;
  padding-top: 0.3rem;
}
.blog-comment-box form{
  margin-top: 1rem ;
}

.blog-comment-box form input,textarea{
  width: 100%;
  outline: none;
  padding: 0.4rem 0.7rem;
  border-radius: 7px;
  border: 1px solid #FFA800;
  background-color: #FFF8EA;
}
.blog-comment-box form textarea{
  margin: 1rem 0;
  resize: none;
}
.blog-comment-box form button{
  border-radius: 7px;
  padding: 0.25rem 1.6rem;
  font-size: 15px;
  border: 1px solid #550096;
  color: #550096;
  transition: all 0.3s ease-in;
}
.blog-comment-box form button:hover{
  color: #fff;
  background: #FFA800;
  border:1px solid #FFFCF5;
}
@media screen and (max-width:576px) {
  .blog-detail-container{
    width: 100%;
  }
  .blog-detail-container #blog-heading-dtl{
    font-size: 2rem;
  }
  .blog-detail-container > p{
    font-size: 14px;
    line-height: 24px;
  }
  .blog-detail-container .blog-subheading{
    font-size: 1.5rem;
  }
  .blog-comment-box form input,textarea{
    font-size: 14px;
  }
  .blog-comment-box form button{
    font-size: 14px;
    margin-top: 14px;
  }
  .blog-comment-box form textarea{
    margin:  0;
  }
  form .row{
    gap: 20px;
  }
}




/* Blog Card Bottom Row & Button (Home Page 3D Style) */
.blog-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.blog-bottom-row .blog-date {
    font-size: 0.85rem;
    color: #475569;
    font-weight: 600;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* 3D Button */
.blog-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px 8px 18px;
    background: linear-gradient(135deg, #f58220 0%, #e45d25 50%, #c8550a 100%);
    color: #ffffff !important;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 0 #943306, 0 8px 15px rgba(200, 85, 10, 0.25);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.blog-card-btn .btn-arrow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    margin-left: 10px;
    font-size: 0.75rem;
    transition: transform 0.25s ease, background-color 0.25s ease;
}

/* On Blog Card Hover -> Button responds */
.blog-box:hover .blog-card-btn {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #943306, 0 12px 20px rgba(200, 85, 10, 0.35);
}

.blog-box:hover .blog-card-btn .btn-arrow-badge {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.4);
}
