/* =====================
BLOG PAGE
===================== */

.blogs-section {
  padding: 120px 8%;

  background: #07111f;
}

.blogs-top {
  text-align: center;

  margin-bottom: 70px;
}

.blogs-top h2 {
  color: white;

  font-size: 48px;

  line-height: 1.2;
}

.blogs-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;
}

/* CARD */

.blog-card {
  position: relative;

  overflow: hidden;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.05);

  border: 1px solid rgba(255, 255, 255, 0.08);

  backdrop-filter: blur(20px);

  transition: 0.5s;
}

.blog-card:hover {
  transform: translateY(-12px);

  border-color: #d4af37;

  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

/* IMAGE */

.blog-image {
  height: 250px;

  overflow: hidden;
}

.blog-image img {
  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: 0.6s;
}

.blog-card:hover img {
  transform: scale(1.1);
}

/* CONTENT */

.blog-content {
  padding: 30px;
}

.blog-tag {
  display: inline-block;

  padding: 8px 18px;

  border-radius: 50px;

  background: rgba(212, 175, 55, 0.15);

  color: #d4af37;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 18px;
}

.blog-content h3 {
  font-size: 25px;

  line-height: 1.4;

  color: white;

  margin-bottom: 15px;
}

.blog-content p {
  color: #b7c4d4;

  line-height: 1.8;

  margin-bottom: 25px;
}

.blog-btn {
  display: flex;

  align-items: center;

  gap: 10px;

  color: #d4af37;

  font-weight: 600;

  text-decoration: none;

  transition: 0.3s;
}

.blog-btn:hover {
  gap: 15px;
}

/* GOLD GLOW */

.blog-card::before {
  content: "";

  position: absolute;

  width: 250px;

  height: 250px;

  right: -100px;

  top: -100px;

  background: rgba(212, 175, 55, 0.15);

  filter: blur(90px);

  opacity: 0;

  transition: 0.5s;
}

.blog-card:hover::before {
  opacity: 1;
}

@media (max-width: 1000px) {
  .blogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blogs-grid {
    grid-template-columns: 1fr;
  }

  .blogs-top h2 {
    font-size: 34px;
  }
}

/* =====================
BLOG DETAILS PAGE
===================== */

.blog-details-banner {
  height: 75vh;

  position: relative;

  overflow: hidden;
}

.blog-details-banner img {
  width: 100%;

  height: 100%;

  object-fit: cover;
}

.banner-overlay {
  position: absolute;

  inset: 0;

  background: linear-gradient(
    to bottom,

    rgba(7, 17, 31, 0.2),
    rgba(7, 17, 31, 0.89)
  );
}

/* CONTENT */

.blog-details-section {
  background: #07111f;

  padding: 100px 8%;
}

.blog-details-container {
  max-width: 900px;

  margin: auto;
}

.blog-title {
  font-size: 48px;

  line-height: 1.25;

  text-align: center;

  color: white;

  margin-bottom: 50px;

  font-weight: 700;
}

.blog-description {
  color: #c1ccda;

  font-size: 18px;

  line-height: 1.9;
}

/* 
WORDPRESS CONTENT SUPPORT

p,h1,h2,h3,h4,h5,span
*/

.blog-description p {
  margin-bottom: 25px;
}

.blog-description h1,
.blog-description h2,
.blog-description h3,
.blog-description h4,
.blog-description h5 {
  color: white;

  margin-top: 40px;

  margin-bottom: 18px;

  line-height: 1.4;
}

.blog-description h4 {
  font-size: 28px;

  color: #d4af37;
}

.blog-description span {
  display: block;

  margin-bottom: 20px;
}

.blog-description ul {
  padding-left: 25px;

  margin-bottom: 25px;
}

.blog-description li {
  margin-bottom: 12px;
}

.blog-description img {
  width: 100%;

  border-radius: 25px;

  margin: 30px 0;
}

@media (max-width: 768px) {
  .blog-details-banner {
    height: 45vh;
  }

  .blog-title {
    font-size: 32px;
  }

  .blog-description {
    font-size: 16px;
  }
}
