html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
nav,
header,
main,
footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Cormorant Garamond', serif;
  background: #fff;
  color: #161616;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: all 0.4s ease;
}

.navbar {
  width: 100%;
  padding: 30px 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

header.scrolled .navbar {
  padding: 16px 70px;
}

header.scrolled .nav-links li a {
  color: #222;
}

.logo img {
  height: 88px;
  width: auto;
  transition: height 0.35s ease;
}

header.scrolled .logo img {
  height: 64px;
}

.nav-links {
  display: flex;
  gap: 52px;
  list-style: none;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid #000;
  width: 46px;
  height: 42px;
  border-radius: 3px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.nav-toggle .bar {
  width: 25px;
  height: 3px;
  background: #000;
  display: block;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 2px;
}

.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #ff6b35;
}

.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #ff6b35;
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100vh;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    flex-direction: column;
    padding: 100px 0 40px;
    gap: 0;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1100;
    overflow-y: auto;
    border-right: 3px solid rgba(255, 107, 53, 0.2);
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideInNav 0.5s ease forwards;
  }

  .nav-links.active li:nth-child(1) {
    animation-delay: 0.1s;
  }

  .nav-links.active li:nth-child(2) {
    animation-delay: 0.2s;
  }

  .nav-links.active li:nth-child(3) {
    animation-delay: 0.3s;
  }

  .nav-links.active li:nth-child(4) {
    animation-delay: 0.4s;
  }

  .nav-links li a {
    display: block;
    font-size: 16px;
    letter-spacing: 1.2px;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: #333;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
    font-weight: 500;
  }

  .nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
    transition: width 0.3s ease;
  }

  .nav-links li a:hover::before {
    width: 100%;
  }

  .nav-links li a:hover {
    background: rgba(255, 107, 53, 0.05);
    color: #ff6b35;
    padding-left: 40px;
    border-left-color: #ff6b35;
    transform: translateX(5px);
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1200;
  }

  .nav-toggle:hover {
    transform: scale(1.1);
  }

  header.scrolled .nav-toggle {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
  }

  .navbar {
    padding: 20px 26px;
    justify-content: flex-start;
    gap: 18px;
  }

  header.scrolled .navbar {
    padding: 14px 26px;
  }

  .nav-toggle {
    order: 0;
    margin-right: 6px;
  }

  .logo {
    order: 1;
  }
}


@keyframes slideInNav {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideUpSubmenu {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.pages-submenu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 400px;
  max-width: 90vw;
  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  padding: 35px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 10000;
  border: 2px solid rgba(255, 107, 53, 0.1);
  backdrop-filter: blur(10px);
}

.pages-submenu.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.pages-submenu h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #333;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.pages-submenu h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6b35, #ff8a65);
  border-radius: 2px;
}

.pages-submenu ul {
  list-style: none;
}

.pages-submenu li {
  margin: 12px 0;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUpSubmenu 0.3s ease forwards;
}

.pages-submenu.active li:nth-child(1) {
  animation-delay: 0.1s;
}

.pages-submenu.active li:nth-child(2) {
  animation-delay: 0.2s;
}

.pages-submenu.active li:nth-child(3) {
  animation-delay: 0.3s;
}

.pages-submenu a {
  display: block;
  padding: 15px 20px;
  color: #555;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.pages-submenu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

.pages-submenu a:hover::before {
  left: 100%;
}

.pages-submenu a:hover {
  background: rgba(255, 107, 53, 0.05);
  color: #ff6b35;
  border-left-color: #ff6b35;
  padding-left: 30px;
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
}

.submenu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1250;
}

.submenu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-links {
  transition: gap .35s ease;
}

.nav-links li a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #222;
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #b3d146;
}


.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  padding: 12rem 6rem 6rem;

  background: url("../Images/hero_bg.jpg") no-repeat center/cover;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 46%;
}

.hero-content h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1.2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;

  color: #666;
}

.hero-content h1 {
  font-size: 3.9rem;

  margin-bottom: 1.2rem;
  line-height: 1.05;

  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;

  letter-spacing: -0.3px;

}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.45;

  font-weight: bolder;

  letter-spacing: -0.2px;

  color: #444;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border-bottom: 2px solid #000;
  font-size: 0.95rem;
  font-weight: bold;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 118%;

  height: auto;
  margin-left: -2rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}

.forecast {
  background: url("../Images/grey_sparkle_01.jpg") center top no-repeat;
  background-size: cover;
  padding: 4rem 6rem;
  color: #fff;
  text-align: center;
}

.forecast-header {
  max-width: 800px;
  margin: 0 auto 3rem;
}

.forecast-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: black;
}

.forecast-header p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
  color: black;
}


.forecast-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.forecast-item {
  text-align: center;
  padding: 10px 6px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.forecast-item img {
  max-width: 140px;
  margin-bottom: 0.55rem;
  transition: transform 0.3s ease;
  cursor: pointer;
  align-self: center;
}

.forecast-item img:hover {
  transform: translateY(-5px);
}


.forecast-item .arrow {
  position: relative;
  display: block;
  width: 92px;
  height: 1px;
  background: #111;
  margin: 0.75rem 0 0.55rem 0;
  transition: background .35s ease, width .45s ease;
  align-self: center;
}

.forecast-item .arrow::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #111;
  border-radius: 50%;
  transition: background .35s ease;
}

.forecast-item .arrow::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #111;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: border-left-color .35s ease;
}


.forecast-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
  text-align: center;
  align-self: center;
  width: 100%;
}


.forecast-item:hover .arrow {
  background: #7f3fbf;
  width: 106px;
}

.forecast-item:hover .arrow::before {
  background: #7f3fbf;
}

.forecast-item:hover .arrow::after {
  border-left-color: #7f3fbf;
}


.forecast-item .date {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: black;
  opacity: 0.8;
  text-align: center;
  align-self: center;
  width: 100%;
}


@media (max-width:760px) {
  .forecast {
    padding: 4rem 1.6rem 3.2rem;
  }

  .forecast-header h2 {
    font-size: 2.1rem;
  }

  .forecast-header p {
    font-size: .9rem;
    line-height: 1.5;
  }

  .forecast-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 46px 24px;
  }

  .forecast-item {
    padding: 6px 4px 18px;
  }

  .forecast-item img {
    max-width: 104px;
  }

  .forecast-item h3 {
    font-size: 1rem;
    margin-bottom: .35rem;
    letter-spacing: .4px;
  }

  .forecast-item .arrow {
    margin: 0.6rem 0 0.4rem 0;
    transform: scale(.9);
    align-self: center;
  }

  .forecast-item .date {
    font-size: 9px;
    letter-spacing: .6px;
  }
}

@media (max-width:480px) {
  .forecast-grid {
    gap: 40px 20px;
  }

  .forecast-item img {
    max-width: 96px;
  }

  .forecast-item h3 {
    font-size: .95rem;

    @media (max-width:560px) {
      .forecast-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
      }

      .forecast-item {
        padding: 4px 0 16px;
      }

      .forecast-item img {
        max-width: 120px;
      }

      .forecast-item .arrow {
        transform: none;
        width: 88px;
        margin: 0.75rem 0 0.55rem 0;
        align-self: center;
      }

      .forecast-item:hover .arrow {
        width: 100px;
      }
    }
  }
}


.subscribe-section {
  background: url("../Images/grey_sparkle_01.jpg") center top repeat-y;
  padding: 140px 0 120px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
}

.subscribe-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 70px;
}

.subscribe-title {
  font-size: 64px;
  font-weight: 500;
  margin-bottom: 18px;
  line-height: 1;
}

.subscribe-subtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.6px;
  margin-bottom: 105px;
  font-family: 'Montserrat', sans-serif;
}


.subscribe-forms-wrapper {
  max-width: 1220px;
  margin: 0 auto;
}

.subscribe-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 210px;
  column-gap: 120px;
  align-items: end;
  margin: 0 auto 110px;
  position: relative;
}

.form-group {
  position: relative;
  text-align: left;
}

.form-group label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.form-group input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  background: transparent;
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  padding: 8px 0 10px 0;
  outline: none;
  position: relative;
}


.subscribe-form .fg-name::before {
  content: none;
}


.subscribe-form .fg-sign::after,
.subscribe-form .fg-sign::before {
  content: none;
}

.submit-btn button {
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.2px;
  cursor: pointer;
  padding: 0 0 8px;
  position: relative;
  color: #000;
  transition: color .3s ease;
}

.submit-btn button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 3px;
  background: #000;
}

.submit-btn button:hover {
  color: #7f3fbf;
}

.submit-btn button:hover::after {
  background: #7f3fbf;
}

.submit-btn button:focus-visible {
  outline: none;
  color: #7f3fbf;
}


.aligned-planets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 210px;
  column-gap: 120px;
}

.aligned-planets .planet-col {
  display: flex;
  justify-content: center;
}

.planets img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}

@media (max-width: 1200px) {

  .subscribe-form,
  .aligned-planets {
    column-gap: 70px;
    grid-template-columns: 1fr 1fr 1fr 180px;
  }

  .planets img {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 990px) {
  .subscribe-form {
    grid-template-columns: 1fr 1fr;
    row-gap: 60px;
  }

  .aligned-planets {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
  }

  .fg-sign::after,
  .fg-sign::before {
    display: none;
  }

  .submit-btn button::after {
    width: 80px;
  }
}

@media (max-width: 640px) {
  .subscribe-container {
    padding: 0 28px;
  }

  .subscribe-title {
    font-size: 48px;
  }

  .subscribe-subtitle {
    margin-bottom: 60px;
  }

  .subscribe-form {
    grid-template-columns: 1fr;
    row-gap: 50px;
    column-gap: 0;
    margin-bottom: 70px;
  }

  .aligned-planets {
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
  }

  .planets img {
    width: 110px;
    height: 110px;
  }

  .fg-name::before {
    transform: translate(0, 5px);
    left: -14px;
  }
}



@media (max-width: 768px) {
  .subscribe-form {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


@media (max-width: 1024px) {
  .forecast-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .forecast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .forecast {
    padding: 4rem 2rem;
  }

  .forecast-item img {
    width: 70px;
  }
}


@media (max-width: 1024px) {
  .forecast-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .forecast-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 768px) {
  .forecast {
    padding: 4rem 2rem;
  }

  .forecast-item img {
    width: 70px;
  }
}


@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 6rem 2rem 4rem;
  }

  .hero-content,
  .hero-image {
    max-width: 100%;
  }

  .hero-image img {
    max-width: 95%;
    margin-left: 0;
  }
}


.astro-blog {
  padding: 150px 0 170px;
  background: #fff;
}

.astro-blog-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 70px;
}

.blog-header {
  text-align: center;
  margin: 0 0 110px;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.7px;
  margin-bottom: 30px;
}

.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.5px;
  color: #111;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 120px;
  align-items: start;
}


.blog-card {
  text-align: center;
  position: relative;
}

.blog-image {
  width: 320px;

  margin: 0 auto 48px;

  position: relative;
}

.blog-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: contain;
  transition: filter .5s ease;
}


.blog-card:hover .blog-image img {

  filter: brightness(1.05) saturate(1.12);
}

.blog-meta {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 18px;

}

.blog-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  margin: 0 0 22px;
  letter-spacing: .35px;
  color: #111;
}

.blog-excerpt {
  max-width: 480px;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13.4px;
  line-height: 1.58;
  color: #222;
  letter-spacing: .25px;
  font-weight: 500;
}


.blog-card .arrow {
  position: relative;
  display: block;
  width: 92px;
  height: 1px;
  background: #111;
  margin: 30px auto;
  transition: background .35s ease, width .45s ease;
}

.blog-card .arrow::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #111;
  border-radius: 50%;
  transition: background .35s ease;
}

.blog-card .arrow::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #111;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: border-left-color .35s ease;
}


.blog-card:hover .arrow {
  background: #7f3fbf;
  width: 106px;
}

.blog-card:hover .arrow::before {
  background: #7f3fbf;
}

.blog-card:hover .arrow::after {
  border-left-color: #7f3fbf;
}


.blog-footer-cta {
  text-align: center;

  margin-top: 140px;
}

.blog-view-more {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-decoration: none;
  color: #000;
  position: relative;
  padding: 0 0 14px;
}

.blog-view-more:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 98px;
  height: 3px;
  background: #000;
  transition: background .3s ease, width .35s ease;
}

.blog-view-more:hover {
  color: #7f3fbf;
}

.blog-view-more:hover:after {
  background: #7f3fbf;
  width: 104px;
}

.blog-view-more:focus-visible {
  outline: none;
  color: #7f3fbf;
}

@media (max-width:1350px) {
  .astro-blog-container {
    padding: 0 100px;
  }

  .blog-image {
    width: 340px;

  }

  .blog-title {
    font-size: 80px;
  }
}

@media (max-width:1300px) {
  .astro-blog-container {
    padding: 0 80px;
  }

  .blog-grid {
    gap: 120px;
  }

  .blog-image {
    width: 320px;

  }

  .blog-title {
    font-size: 68px;
  }
}

@media (max-width:1100px) {
  .blog-grid {
    gap: 100px;
  }

  .blog-image {
    width: 310px;
  }

  .blog-post-title {
    font-size: 28px;
  }
}

@media (max-width:980px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 110px 70px;
  }

  .astro-blog {
    padding: 130px 0 150px;
  }
}

@media (max-width:760px) {
  .blog-title {
    font-size: 58px;
  }

  .blog-image {
    width: 270px;
  }

  .blog-header {
    margin-bottom: 90px;
  }


  .blog-card .arrow {
    width: 80px;
    margin: 25px auto;
  }

  .blog-card:hover .arrow {
    width: 92px;
  }
}

@media (max-width:640px) {
  .astro-blog {
    padding: 110px 0 130px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 90px;
  }

  .blog-title {
    font-size: 52px;
  }

  .blog-image {
    width: 240px;
    margin-bottom: 46px;
  }

  .blog-excerpt {
    font-size: 12.5px;
  }


  .blog-card .arrow {
    width: 70px;
    margin: 20px auto;
  }

  .blog-card:hover .arrow {
    width: 80px;
  }
}


.follow-section {
  position: relative;
  background: #fff url('../Images/grey_sparkle_02.jpg') center top repeat-y;
  padding: 170px 0 160px;
  text-align: center;
  overflow: hidden;
}

.follow-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 70px;
}

.follow-planets img {
  width: 100%;
  max-width: 1180px;
  height: auto;
  display: block;
  margin: 0 auto 140px;

  will-change: transform;
  transform: translateZ(0);
}

.follow-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 68px;
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 54px;
  letter-spacing: -.4px;
}


.follow-ornament {
  position: relative;
  width: 220px;
  height: 24px;
  margin: 0 auto 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.follow-ornament .arrow {
  position: relative;
  display: block;
  width: 140px;
  height: 2px;
  background: #161616;
  transition: background .35s ease, width .45s ease;
}

.follow-ornament .arrow::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #161616;
  border-radius: 50%;
  transition: background .35s ease;
}

.follow-ornament .arrow::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid #161616;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: border-left-color .35s ease;
}


.follow-ornament:hover .arrow {
  background: #7f3fbf;
  width: 150px;
}

.follow-ornament:hover .arrow::before {
  background: #7f3fbf;
}

.follow-ornament:hover .arrow::after {
  border-left-color: #7f3fbf;
}


.social-list:hover ~ .follow-ornament .arrow {
  background: #7f3fbf;
  width: 150px;
}

.social-list:hover ~ .follow-ornament .arrow::before {
  background: #7f3fbf;
}

.social-list:hover ~ .follow-ornament .arrow::after {
  border-left-color: #7f3fbf;
}


.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
  flex-wrap: wrap;
}

.social-btn {
  width: 110px;
  height: 110px;
  border: 2px solid #161616;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #161616;
  text-decoration: none;
  position: relative;
  font-size: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #161616;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.social-btn svg {
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.social-btn:hover {
  border-color: #7f3fbf;
  color: #fff;
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 15px 35px rgba(127, 63, 191, 0.3);
}

.social-btn:hover::before {
  width: 120%;
  height: 120%;
  background: #7f3fbf;
}

.social-btn:focus-visible {
  outline: 3px solid #7f3fbf;
  outline-offset: 6px;
}


.social-btn.twitter:hover {
  border-color: #1da1f2;
  box-shadow: 0 15px 35px rgba(29, 161, 242, 0.3);
}

.social-btn.twitter:hover::before {
  background: #1da1f2;
}

.social-btn.facebook:hover {
  border-color: #4267b2;
  box-shadow: 0 15px 35px rgba(66, 103, 178, 0.3);
}

.social-btn.facebook:hover::before {
  background: #4267b2;
}

.social-btn.youtube:hover {
  border-color: #ff0000;
  box-shadow: 0 15px 35px rgba(255, 0, 0, 0.3);
}

.social-btn.youtube:hover::before {
  background: #ff0000;
}

.social-btn.instagram:hover {
  border-color: #e4405f;
  box-shadow: 0 15px 35px rgba(228, 64, 95, 0.3);
}

.social-btn.instagram:hover::before {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}




@media (min-width: 1600px) {
  .follow-inner {
    padding: 0 120px;
    max-width: 1400px;
  }

  .social-btn {
    width: 130px;
    height: 130px;
  }

  .social-btn svg {
    width: 52px;
    height: 52px;
  }

  .social-list {
    gap: 60px;
  }

  .follow-title {
    font-size: 72px;
  }
}


@media (min-width: 1400px) {
  .follow-inner {
    padding: 0 100px;
  }

  .social-btn {
    width: 120px;
    height: 120px;
  }

  .social-btn svg {
    width: 48px;
    height: 48px;
  }

  .social-list {
    gap: 55px;
  }
}


@media (max-width: 1300px) {
  .follow-inner {
    padding: 0 60px;
  }

  .follow-section {
    padding: 150px 0 140px;
  }
}


@media (max-width: 1100px) {
  .follow-title {
    font-size: 60px;
    margin-bottom: 45px;
  }

  .social-btn {
    width: 96px;
    height: 96px;
  }

  .social-btn svg {
    width: 38px;
    height: 38px;
  }

  .follow-planets img {
    margin-bottom: 120px;
    max-width: 1000px;
  }

  .social-list {
    gap: 40px;
  }

  .follow-ornament {
    margin-bottom: 100px;
  }
}


@media (max-width: 900px) {
  .follow-section {
    padding: 120px 0 110px;
  }

  .follow-inner {
    padding: 0 40px;
  }

  .follow-title {
    font-size: 56px;
  }

  .follow-planets img {
    margin-bottom: 100px;
    max-width: 800px;
  }
}


@media (max-width: 760px) {
  .follow-title {
    font-size: 48px;
    margin-bottom: 40px;
  }

  .social-list {
    gap: 35px;
  }

  .social-btn {
    width: 80px;
    height: 80px;
  }

  .social-btn svg {
    width: 32px;
    height: 32px;
  }

  .follow-planets img {
    margin-bottom: 80px;
    max-width: 600px;
  }

  .follow-ornament {
    margin-bottom: 70px;
  }

  .follow-section {
    padding: 100px 0 90px;
  }

  .follow-inner {
    padding: 0 30px;
  }
}


@media (max-width: 600px) {
  .follow-section {
    padding: 80px 0 70px;
  }

  .follow-title {
    font-size: 42px;
    margin-bottom: 35px;
  }

  .social-list {
    gap: 25px;
  }

  .social-btn {
    width: 70px;
    height: 70px;
  }

  .social-btn svg {
    width: 28px;
    height: 28px;
  }

  .social-btn:hover {
    transform: translateY(-5px) scale(1.05);
  }

  .follow-planets img {
    margin-bottom: 60px;
    max-width: 400px;
  }

  .follow-ornament {
    margin-bottom: 50px;
  }

  .follow-inner {
    padding: 0 25px;
  }
}


@media (max-width: 520px) {
  .follow-title {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .social-btn {
    width: 60px;
    height: 60px;
  }

  .social-btn svg {
    width: 24px;
    height: 24px;
  }

  .follow-planets img {
    margin-bottom: 50px;
    max-width: 320px;
  }

  .social-list {
    gap: 20px;
  }

  .follow-ornament {
    margin-bottom: 40px;
  }

  .follow-section {
    padding: 60px 0 50px;
  }
}


@media (max-width: 400px) {
  .follow-title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .social-btn {
    width: 55px;
    height: 55px;
  }

  .social-btn svg {
    width: 22px;
    height: 22px;
  }

  .social-list {
    gap: 18px;
  }

  .follow-planets img {
    margin-bottom: 40px;
    max-width: 280px;
  }

  .follow-inner {
    padding: 0 20px;
  }

  .follow-ornament {
    margin-bottom: 35px;
  }
}


@media (max-width: 320px) {
  .follow-title {
    font-size: 28px;
  }

  .social-btn {
    width: 50px;
    height: 50px;
  }

  .social-btn svg {
    width: 20px;
    height: 20px;
  }

  .social-list {
    gap: 15px;
  }

  .follow-planets img {
    max-width: 250px;
  }

  .follow-section {
    padding: 50px 0 40px;
  }
}


@media (hover: none) and (pointer: coarse) {
  .social-btn {

    min-width: 60px;
    min-height: 60px;

  }

  .social-btn:hover {
    transform: none;
  }

  .social-btn:active {
    transform: scale(0.95);
    transition: transform 0.1s ease;
  }
}


@media (prefers-reduced-motion: reduce) {

  .social-btn,
  .social-btn::before,
  .follow-ornament .arrow,
  .follow-ornament .arrow::before,
  .follow-ornament .arrow::after {
    transition: none;
  }

  .social-btn:hover {
    transform: none;
  }
}


@media (prefers-contrast: high) {
  .social-btn {
    border-width: 3px;
  }

  .follow-ornament .arrow,
  .follow-ornament .arrow::before {
    background: #000;
  }

  .follow-ornament .arrow::after {
    border-left-color: #000;
  }
}


.social-btn:focus-visible {
  outline: 3px solid #7f3fbf;
  outline-offset: 4px;
  border-color: #7f3fbf;
}

.social-list:focus-within .follow-ornament .arrow {
  background: #7f3fbf;
  width: 150px;
}

.social-list:focus-within .follow-ornament .arrow::before {
  background: #7f3fbf;
}

.social-list:focus-within .follow-ornament .arrow::after {
  border-left-color: #7f3fbf;
}




.fr-arrow {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  height: 20px;
}

.fr-arrow .arrow {
  position: relative;
  display: block;
  width: 100px;
  height: 1px;
  background: #111;
  transition: background .35s ease, width .45s ease;
}

.fr-arrow .arrow::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #111;
  border-radius: 50%;
  transition: background .35s ease;
}

.fr-arrow .arrow::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #111;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: border-left-color .35s ease;
}


.fr-content:hover .fr-arrow .arrow {
  background: #7f3fbf;
  width: 110px;
}

.fr-content:hover .fr-arrow .arrow::before {
  background: #7f3fbf;
}

.fr-content:hover .fr-arrow .arrow::after {
  border-left-color: #7f3fbf;
}


.main-article-arrow {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
  height: 24px;
}

.main-article-arrow .arrow {
  position: relative;
  display: block;
  width: 140px;
  height: 2px;
  background: #161616;
  transition: background .35s ease, width .45s ease;
}

.main-article-arrow .arrow::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #161616;
  border-radius: 50%;
  transition: background .35s ease;
}

.main-article-arrow .arrow::after {
  content: '';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid #161616;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  transition: border-left-color .35s ease;
}


.main-article-right:hover .main-article-arrow .arrow {
  background: #7f3fbf;
  width: 150px;
}

.main-article-right:hover .main-article-arrow .arrow::before {
  background: #7f3fbf;
}

.main-article-right:hover .main-article-arrow .arrow::after {
  border-left-color: #7f3fbf;
}


.sidebar-arrow {
  display: flex;
  align-items: center;
  height: 18px;
  margin-top: 0;
}

.sidebar-arrow .arrow {
  position: relative;
  display: block;
  width: 85px;
  height: 1px;
  background: #161616;
  transition: background .35s ease, width .45s ease;
}

.sidebar-arrow .arrow::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #161616;
  border-radius: 50%;
  transition: background .35s ease;
}

.sidebar-arrow .arrow::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 6px solid #161616;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: border-left-color .35s ease;
}


.sidebar-item:hover .sidebar-arrow .arrow {
  background: #7f3fbf;
  width: 95px;
}

.sidebar-item:hover .sidebar-arrow .arrow::before {
  background: #7f3fbf;
}

.sidebar-item:hover .sidebar-arrow .arrow::after {
  border-left-color: #7f3fbf;
}


.arrow-inline {
  display: flex;
  align-items: center;
  height: 22px;
}

.arrow-inline .arrow {
  position: relative;
  display: block;
  width: 120px;
  height: 2px;
  background: #161616;
  transition: background .35s ease, width .45s ease;
}

.arrow-inline .arrow::before {
  content: '';
  position: absolute;
  left: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  background: #161616;
  border-radius: 50%;
  transition: background .35s ease;
}

.arrow-inline .arrow::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 9px solid #161616;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: border-left-color .35s ease;
}


.arrow-inline:hover .arrow {
  background: #7f3fbf;
  width: 130px;
}

.arrow-inline:hover .arrow::before {
  background: #7f3fbf;
}

.arrow-inline:hover .arrow::after {
  border-left-color: #7f3fbf;
}


.arrow-container {
  display: flex;
  align-items: center;
  height: 20px;
  margin: 12px 0;
}

.arrow-container .arrow {
  position: relative;
  display: block;
  width: 100px;
  height: 1px;
  background: #161616;
  transition: background .35s ease, width .45s ease;
}

.arrow-container .arrow::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #161616;
  border-radius: 50%;
  transition: background .35s ease;
}

.arrow-container .arrow::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 8px solid #161616;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  transition: border-left-color .35s ease;
}


.arrow-container:hover .arrow {
  background: #7f3fbf;
  width: 110px;
}

.arrow-container:hover .arrow::before {
  background: #7f3fbf;
}

.arrow-container:hover .arrow::after {
  border-left-color: #7f3fbf;
}
