


.pages-submenu {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  padding: 25px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1300;
}

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

.pages-submenu h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 2px solid #b3d146;
  padding-bottom: 10px;
}

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

.pages-submenu li {
  margin: 8px 0;
}

.pages-submenu a {
  display: block;
  padding: 12px 20px;
  color: #555;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  border-left: 3px solid transparent;
}

.pages-submenu a:hover {
  background: #f0f7e6;
  color: #b3d146;
  border-left-color: #b3d146;
  padding-left: 25px;
}

.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;
}


body.blog-page {
  padding-top: 0;
  
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


:root {
  
  --articles-hero-pad-top: 184px;
  
  --articles-hero-pad-bottom: 146px;
  
  --articles-hero-white-gap: 32px;
  
  --articles-hero-divider-bottom: 26px;
  
  --articles-hero-pink-gap: 36px;
  
  
  --blog-max-width: 1380px;
  --blog-side-pad: 100px;
  --blog-section-gap: 160px;
  --blog-feature-gutter: 120px;
  --blog-accent: #161616;
  --blog-text: #222;
  --blog-meta: #161616;
  --blog-divider: #e5e5e5;
  
  --main-article-img-w: 400px;
  --main-article-img-h: 500px;
  --feature-primary-img-w: 370px;
  --feature-primary-img-h: 233px;
}

@media (max-width:1400px) {
  :root {
    --articles-hero-pad-top: 178px;
    --articles-hero-pad-bottom: 138px;
    --articles-hero-divider-bottom: 24px;
    --articles-hero-pink-gap: 34px;
  }
}

@media (max-width:1200px) {
  :root {
    --articles-hero-pad-top: 170px;
    --articles-hero-pad-bottom: 126px;
    --articles-hero-divider-bottom: 22px;
    --articles-hero-pink-gap: 34px;
  }
}

@media (max-width:768px) {
  :root {
    --articles-hero-pad-top: 155px;
    --articles-hero-pad-bottom: 112px;
    --articles-hero-divider-bottom: 20px;
    --articles-hero-pink-gap: 32px;
  }
}

@media (max-width:480px) {
  :root {
    --articles-hero-pad-top: 138px;
    --articles-hero-pad-bottom: 100px;
    --articles-hero-divider-bottom: 18px;
    --articles-hero-pink-gap: 30px;
  }
}






.hero-section {
  position: relative;
  background: #fff;
  padding-top: var(--articles-hero-pad-top);
  padding-bottom: var(--articles-hero-pad-bottom);
  text-align: center;
  overflow: hidden;
}


.hero-section::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: calc(100% - var(--articles-hero-pink-gap));
  background: url('../Images/pink_background.jpg') center top/cover no-repeat;
  opacity: 0.9;
  
  z-index: 0;
}



.main-article-section {
  background: #fff;
  padding: 80px 0 100px;
  border-bottom: none;
}



.feature-row {
  max-width: 1400px;
  margin: 160px auto 0;
  display: flex;
  gap: 60px;
  align-items: center;
  padding: 0 40px;
}

.feature-row.reverse {
  flex-direction: row-reverse;
  justify-content: flex-end;
  padding-left: 20px;
}

.fr-image img {
  width: 370px;
  height: 233px;
  object-fit: cover;
  display: block;
}


.fr-image img[src="Images/post_15.jpg"] {
  width: 372px;
  height: 463px;
}


.fr-image img[src="Images/post_16-960x1200.jpg"] {
  width: 372px;
  height: 463px;
}


.fr-image img[src="Images/post_17-960x1200.jpg"] {
  width: 372px;
  height: 463px;
}


.video-container {
  width: 370px;
  height: 233px;
  position: relative;
  overflow: hidden;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}

.fr-content {
  max-width: 440px;
}

.fr-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0 0 16px;
}

.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;
}

.fr-excerpt {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 15px 0;
  color: #666;
}

.fr-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #999;
}

.fr-meta .sep {
  color: #bdbdbd;
}


.feature-primary {
  padding-top: 40px;
}

.feature-primary .fr-content {
  max-width: 560px;
}

.feature-primary .fr-title {
  font-size: 58px;
  line-height: 1.07;
  margin: 0 0 30px;
  max-width: 560px;
}

.feature-primary .fr-arrow-primary {
  margin: 0 0 42px;
}

.feature-primary .fr-arrow-primary .line {
  width: 132px;
}

.feature-primary .fr-excerpt {
  font-size: 15.4px;
  line-height: 1.64;
  margin: 0 0 46px;
}

.feature-primary .fr-meta {
  font-size: 11.2px;
  letter-spacing: 1.95px;
}

.feature-primary .fr-image img {
  width: 520px;
  height: 510px;
  object-fit: cover;
}


.slider-feature {
  margin: 170px 0 0;
  background: #fff;
}

.sf-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 120px;
  align-items: center;
  padding: 0 100px;
}


.sf-slider {
  width: 370px;
  height: 280px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 auto;
  background: #f5f5f5;
}

.sf-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.sf-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.sf-slide:first-child {
  opacity: 1;
  z-index: 2;
}

.sf-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  user-select: none;
}


.fr-mobile-image {
  display: none;
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center center;
  border-radius: 8px;
}

.sf-slide figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
  color: #fff;
  font: 600 14px/1.4 'Montserrat', sans-serif;
  letter-spacing: 1.2px;
  padding: 20px 18px 16px;
  text-transform: uppercase;
  border-radius: 0 0 8px 8px;
  text-align: center;
  user-select: none;
}

.sf-nav {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.sf-nav .nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.sf-nav .nav-dot:hover {
  border-color: #fff;
  transform: scale(1.2);
}

.sf-nav .nav-dot.active {
  background: #fff;
  border-color: #fff;
}

.sf-nav button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sf-nav button.active {
  background: #fff;
  border-color: #fff;
}

.sf-nav button:hover {
  background: rgba(255, 255, 255, 0.9);
}

.sf-content {
  flex: 1;
  max-width: 560px;
}

@media (max-width:1100px) {

  .feature-row,
  .sf-inner {
    flex-direction: column;
    gap: 70px;
    padding: 0 60px;
  }

  .feature-row.reverse {
    flex-direction: column;
  }

  
  .sf-slider {
    display: none;
  }

  .fr-mobile-image {
    display: block;
    width: 100%;
    max-width: 640px;
    height: 300px;
    margin: 0 auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
  }
}

@media (max-width:640px) {
  .feature-row {
    margin-top: 120px;
    padding: 0 28px;
    gap: 54px;
  }

  .fr-title {
    font-size: 40px;
  }

  .sf-inner {
    padding: 0 28px;
  }

  .fr-arrow .line {
    width: 110px;
  }

  
  .sf-slider {
    display: none;
  }

  .fr-mobile-image {
    display: block;
    width: 100%;
    max-width: 350px;
    height: 250px;
    margin: 0 auto;
    object-fit: cover;
    object-position: center center;
    border-radius: 8px;
  }
}

.main-article-container {
  display: grid;
  grid-template-columns: 370px 1fr 360px;
  gap: 0 80px;
  
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  padding: 0 40px;
  padding-left: 0;
}

.main-article-container {
  display: grid;
  grid-template-columns: var(--main-article-img-w) 1fr 360px;
  gap: 0 80px;
  
  max-width: 1320px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  padding: 0 40px;
  padding-left: 0;
}

.main-article-left {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}

.main-article-image {
  width: 370px;
  height: 470px;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.main-article-image {
  width: var(--main-article-img-w);
  height: var(--main-article-img-h);
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.feature-primary .fr-image img {
  width: var(--feature-primary-img-w);
  height: var(--feature-primary-img-h);
  object-fit: cover;
}

.main-article-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 20px;
}

.main-article-title {
  font-family: 'Crimson Text', serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  color: #2c2c2c;
  margin: 0 0 32px;
  max-width: 500px;
  font-feature-settings: 'liga', 'clig', 'kern';
}

.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;
}

.main-article-excerpt {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #555;
  margin: 0 0 44px;
  max-width: 520px;
}

.main-article-meta {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #999;
  text-transform: uppercase;
  display: flex;
  gap: 12px;
  line-height: 1.3;
}

.main-article-meta .sep {
  color: #bdbdbd;
}


.main-article-sidebar {
  background: #f8f8f8;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  padding: 0;
  width: 360px;
  position: relative;
}


.sidebar-featured {
  position: relative;
  margin-bottom: 0;
  background: #fff;
  overflow: hidden;
}

.sidebar-featured-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.sidebar-featured:hover .sidebar-featured-image {
  transform: scale(1.05);
}

.sidebar-featured-content {
  padding: 25px 30px 30px;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
}

.sidebar-featured-title {
  font-family: 'Crimson Text', serif;
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin: 0 0 15px 0;
  line-height: 1.2;
}

.sidebar-featured-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 15px 0 0 0;
}

.sidebar-featured:hover .sidebar-arrow .arrow {
  width: 140px;
}

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

.sidebar-featured: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: var(--blog-accent);
  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: var(--blog-accent);
  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 var(--blog-accent);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  transition: border-left-color .35s ease;
}

.sidebar-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #222;
  text-transform: uppercase;
  padding: 30px 30px 20px;
  margin: 0;
  border-bottom: 1px solid #e8e8e8;
  background: #fff;
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e8e8e8;
  padding: 25px 30px;
  gap: 20px;
  transition: background-color 0.3s ease;
}

.sidebar-item:hover {
  background: #fff;
}

.sidebar-item:first-child {
  background: #fff;
}

.sidebar-thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.sidebar-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-title-text {
  font-family: 'Lora', serif;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 6px;
  line-height: 1.3;
}

.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;
}


@media (max-width: 1100px) {
  .main-article-container {
    grid-template-columns: 1fr 1.2fr 0.9fr;
    gap: 0 32px;
    max-width: 1000px;
  }

  .main-article-image {
    max-width: 340px;
  }

  .main-article-sidebar {
    min-width: 220px;
    max-width: 240px;
  }
}

@media (max-width: 900px) {
  .main-article-container {
    grid-template-columns: 1fr 1.2fr;
    gap: 0 24px;
  }

  
}

@media (max-width: 700px) {
  .main-article-section {
    padding: 36px 0 0;
  }

  .main-article-container {
    display: flex;
    flex-direction: column;
    max-width: 98vw;
    padding: 0 8px;
    gap: 30px;
  }

  .main-article-left,
  .main-article-right {
    width: 100%;
    padding: 0;
  }

  .main-article-left {
    order: 1;
  }

  .main-article-right {
    order: 2;
  }

  .main-article-sidebar {
    width: 100%;
    order: 3;
    margin-top: 20px;
    padding: 20px 15px;
  }

  .main-article-image {
    max-width: 100vw;
    margin-bottom: 18px;
  }
}


.hero-divider {
  position: absolute;
  left: 50%;
  bottom: var(--articles-hero-divider-bottom);
  width: 142%;
  
  transform: translateX(-50%);
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-divider img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(104%) contrast(98%);
}


.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-title {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  font-size: 82px;
  
  line-height: 1.05;
  color: #2c2c2c;
  letter-spacing: 0;
  margin: 0;
}


@media (max-width: 1400px) {
  .hero-title {
    font-size: 72px;
  }
}

@media (max-width: 1200px) {
  .hero-title {
    font-size: 64px;
  }

  .hero-divider {
    width: 160%;
  }
}




.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: nowrap;
  max-width: 100%;
  width: 100%;
}

.social-btn {
  width: 90px;
  height: 90px;
  border: 2px solid #161616;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #161616;
  text-decoration: none;
  position: relative;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: transparent;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

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


@media (max-width: 360px) {
  .social-list {
    gap: 10px;
    flex-wrap: nowrap;
  }

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

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


.social-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #7f3fbf;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.social-btn:hover::before {
  width: 100%;
  height: 100%;
}

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

.social-btn:hover svg {
  color: #fff;
  transform: scale(1.1);
}

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

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

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

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

  .social-list {
    gap: 25px;
    flex-wrap: nowrap;
    justify-content: center;
  }
}

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

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

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

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

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

  .social-list {
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 48px;
  }

  .hero-content {
    padding: 0 28px;
  }

  .hero-divider {
    width: 180%;
  }
}








@media (max-width: 768px) {
  

  header .nav-links,
  .navbar .nav-links,
  nav .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 100px 30px 30px;
    transition: right 0.3s ease;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
  }

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

  .nav-links li {
    width: 100%;
    margin: 0 0 20px 0;
  }

  .nav-links a {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    display: block;
  }
}


@media (max-width: 480px) {

  
  :root {
    --articles-hero-pad-top: 120px;
    --articles-hero-pad-bottom: 80px;
    --articles-hero-divider-bottom: 16px;
    --articles-hero-pink-gap: 24px;
    --blog-side-pad: 20px;
    --blog-section-gap: 80px;
    --blog-feature-gutter: 40px;
    --main-article-img-w: 100%;
    --main-article-img-h: auto;
    --feature-primary-img-w: 100%;
    --feature-primary-img-h: auto;
  }

  
  .hero-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
  }

  .main-article-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .fr-title {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .main-article-excerpt,
  .fr-excerpt {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .main-article-meta,
  .fr-meta {
    font-size: 12px;
    margin-top: 16px;
  }

  

  
  .hero-section {

    
    .hero-section {
      padding: var(--articles-hero-pad-top) 20px var(--articles-hero-pad-bottom);
      text-align: center;
    }

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

    .hero-divider {
      margin-top: 40px;
    }

    .hero-divider img {
      max-width: 100%;
      height: auto;
    }

    
    .main-article-section {
      padding: 60px 20px;
      margin-top: 0;
    }

    .main-article-container {
      display: flex;
      flex-direction: column;
      gap: 40px;
      max-width: 100%;
    }

    .main-article-left {
      width: 100%;
      order: 1;
    }

    .main-article-right {
      width: 100%;
      order: 2;
      padding: 0;
    }

    .main-article-sidebar {
      width: 100%;
      order: 3;
      margin-top: 40px;
      padding: 30px 20px;
    }

    .main-article-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: 8px;
    }

    .sidebar-title {
      font-size: 16px;
      margin-bottom: 25px;
    }

    .sidebar-item {
      flex-direction: column;
      gap: 15px;
      padding: 20px 0;
      text-align: center;
    }

    .sidebar-thumb {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
    }

    .sidebar-info {
      width: 100%;
    }

    .sidebar-title-text {
      font-size: 16px;
      line-height: 1.4;
      margin-bottom: 12px;
    }

    
    .sidebar-featured {
      margin-bottom: 40px;
      padding: 20px;
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.8);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .sidebar-featured-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 16px;
    }

    .sidebar-featured-content {
      text-align: center;
    }

    .sidebar-featured-title {
      font-size: 20px;
      line-height: 1.3;
      margin-bottom: 12px;
      color: #333;
    }

    .sidebar-featured-text {
      font-size: 14px;
      line-height: 1.5;
      color: #666;
      margin-top: 12px;
    }

    
    .feature-row {
      flex-direction: column;
      gap: 30px;
      padding: 0 20px;
      margin-top: 80px;
    }

    .feature-row.reverse {
      flex-direction: column;
    }

    .fr-content {
      width: 100%;
      order: 2;
      text-align: center;
    }

    .fr-image {
      width: 100%;
      order: 1;
      display: block;
      position: relative;
    }

    .feature-row.reverse .fr-content {
      order: 2;
    }

    .feature-row.reverse .fr-image {
      order: 1;
    }

    .fr-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 8px;
    }

    
    .sf-slider {
      display: none;
    }

    .fr-mobile-image {
      display: block;
      width: 100%;
      height: 200px;
      border-radius: 8px;
      margin: 0 auto;
      object-fit: cover;
      object-position: center center;
    }

    .sf-slide figcaption {
      font-size: 12px;
      padding: 8px 12px;
      line-height: 1.3;
    }

    .sf-nav {
      bottom: 10px;
    }

    .sf-nav .nav-dot {
      width: 10px;
      height: 10px;
    }

    .sf-slide figcaption {
      font-size: 14px;
      padding: 10px 15px;
    }

    .sf-nav {
      bottom: 15px;
    }

    
    .video-container {
      width: 100%;
      height: 250px;
      border-radius: 8px;
      overflow: hidden;
    }

    .video-container iframe {
      width: 100%;
      height: 100%;
    }

    
    .follow-section {
      padding: 80px 20px 70px;
    }

    .follow-inner {
      max-width: 100%;
      text-align: center;
      padding: 0 15px;
    }

    .follow-title {
      font-size: 36px;
      margin-bottom: 30px;
      line-height: 1.2;
    }

    .follow-planets img {
      max-width: 250px;
      height: auto;
      margin-bottom: 50px;
    }

    .social-list {
      gap: 15px;
      flex-wrap: nowrap;
      justify-content: center;
      display: flex;
      list-style: none;
      padding: 0;
      margin: 0;
      max-width: 100%;
    }

    .social-btn {
      width: 50px;
      height: 50px;
      border: 2px solid #161616;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #161616;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      flex-shrink: 0;
    }

    .social-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      background: #7f3fbf;
      border-radius: 50%;
      transition: all 0.3s ease;
      transform: translate(-50%, -50%);
      z-index: 1;
    }

    .social-btn:hover::before {
      width: 100%;
      height: 100%;
    }

    .social-btn:hover {
      border-color: #7f3fbf;
      transform: translateY(-4px);
    }

    .social-btn:hover svg {
      color: #fff;
    }

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

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

    .social-btn:hover::before {
      width: 120%;
      height: 120%;
    }

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

    
    .arrow {
      width: 80px;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      margin: 12px 0;
    }

    .arrow::before {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      margin-right: 8px;
      flex-shrink: 0;
    }

    .arrow::after {
      width: 60px;
      height: 2px;
      flex-grow: 1;
      max-width: 60px;
    }

    
    .main-article-arrow,
    .fr-arrow,
    .sidebar-arrow {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      margin: 16px 0;
    }

    .main-article-arrow .arrow,
    .fr-arrow .arrow {
      margin: 0 auto;
    }

    
    .sidebar-arrow .arrow {
      margin: 8px auto;
      justify-content: center;
    }

    
    .sidebar-featured .sidebar-arrow {
      display: flex;
      justify-content: center;
      margin: 12px 0;
    }

    .sidebar-featured .sidebar-arrow .arrow {
      width: 80px;
    }

    
    .follow-ornament {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }

    .follow-ornament .arrow {
      width: 120px;
      margin: 0 auto;
    }

    .follow-ornament .arrow::after {
      width: 100px;
    }
  }

  
  @media (max-width: 375px) {
    :root {
      --blog-side-pad: 15px;
      --blog-section-gap: 60px;
    }

    .hero-title {
      font-size: 42px;
    }

    .main-article-title {
      font-size: 24px;
    }

    .fr-title {
      font-size: 28px;
    }

    .main-article-excerpt,
    .fr-excerpt {
      font-size: 15px;
    }

    .navbar {
      padding: 0 15px;
    }

    .hero-section,
    .main-article-section,
    .feature-row {
      padding-left: 15px;
      padding-right: 15px;
    }

    .nav-links {
      width: 100%;
      padding: 100px 20px 30px;
    }

    .main-article-image,
    .fr-image img,
    .sf-slider {
      height: 220px;
    }

    
    .arrow {
      width: 70px;
    }

    .arrow::before {
      width: 5px;
      height: 5px;
    }

    .arrow::after {
      width: 50px;
      height: 1.5px;
    }

    .follow-ornament .arrow {
      width: 100px;
    }

    .follow-ornament .arrow::after {
      width: 80px;
    }

    .sidebar-featured-title {
      font-size: 18px;
    }

    .sidebar-featured-text {
      font-size: 13px;
    }
  }

  
  @media (min-width: 481px) and (max-width: 768px) {
    :root {
      --articles-hero-pad-top: 140px;
      --articles-hero-pad-bottom: 100px;
      --blog-side-pad: 40px;
      --blog-section-gap: 100px;
      --blog-feature-gutter: 60px;
    }

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

    .main-article-title {
      font-size: 32px;
    }

    .fr-title {
      font-size: 36px;
    }

    .main-article-container {
      flex-direction: column;
      gap: 50px;
    }

    .main-article-left {
      width: 100%;
    }

    .main-article-right {
      width: 100%;
      padding: 0;
    }

    .main-article-sidebar {
      width: 100%;
      margin-top: 50px;
    }

    .main-article-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .feature-row {
      flex-direction: column;
      gap: 50px;
      padding: 0 40px;
    }

    .fr-image img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }

    .sidebar-item {
      flex-direction: row;
      gap: 20px;
    }

    .sidebar-thumb {
      width: 120px;
      height: 90px;
      flex-shrink: 0;
    }

    
    .main-article-arrow,
    .fr-arrow,
    .sidebar-arrow {
      display: flex;
      justify-content: center;
      margin: 20px 0;
    }

    .arrow {
      width: 100px;
    }

    .sidebar-featured {
      margin-bottom: 30px;
      padding: 25px;
    }

    .sidebar-featured-image {
      height: 250px;
    }

    .sidebar-featured-title {
      font-size: 22px;
    }
  }

  
  @media (min-width: 769px) and (max-width: 1024px) {
    :root {
      --articles-hero-pad-top: 160px;
      --articles-hero-pad-bottom: 120px;
      --blog-side-pad: 60px;
      --blog-section-gap: 120px;
      --blog-feature-gutter: 80px;
    }

    .main-article-container {
      gap: 60px;
    }

    .main-article-sidebar {
      width: 300px;
      margin-top: 0;
    }

    .feature-row {
      gap: 60px;
      padding: 0 60px;
    }

    
    .main-article-arrow,
    .fr-arrow {
      display: flex;
      justify-content: flex-start;
      margin: 24px 0;
    }

    .arrow {
      width: 120px;
    }

    .follow-ornament {
      display: flex;
      justify-content: center;
    }

    .follow-ornament .arrow {
      width: 140px;
    }
  }

  
  @media (hover: none) and (pointer: coarse) {

    
    .nav-links a,
    .social-btn {
      min-height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .arrow:hover {
      transform: none;
    }

    .arrow:active {
      transform: scale(0.95);
    }
  }

  
  @media (-webkit-min-device-pixel-ratio: 2),
  (min-resolution: 192dpi) {

    .hero-divider img,
    .follow-planets img {
      image-rendering: -webkit-optimize-contrast;
      image-rendering: crisp-edges;
    }
  }

  
  @media (max-height: 480px) and (orientation: landscape) {
    .hero-section {
      padding-top: 100px;
      padding-bottom: 60px;
    }

    .nav-links {
      height: 100vh;
      overflow-y: auto;
    }
  }

  
  @media print {

    .navbar,
    .follow-section,
    .sf-nav {
      display: none;
    }

    .hero-section,
    .main-article-section,
    .feature-row {
      padding: 20px 0;
      page-break-inside: avoid;
    }

    .main-article-container,
    .feature-row {
      flex-direction: column;
    }

    body {
      font-size: 12pt;
      line-height: 1.4;
    }

    .hero-title,
    .main-article-title,
    .fr-title {
      color: #000;
    }
  }
}


.main-article-title:hover {
  color: #8b5cf6;
  cursor: pointer;
  transition: color 0.3s ease;
}

.fr-title:hover {
  color: #8b5cf6;
  cursor: pointer;
  transition: color 0.3s ease;
}

.sidebar-featured-title:hover {
  color: #8b5cf6;
  cursor: pointer;
  transition: color 0.3s ease;
}

.sidebar-title:hover {
  color: #8b5cf6;
  cursor: pointer;
  transition: color 0.3s ease;
}

.follow-title:hover {
  color: #8b5cf6;
  cursor: pointer;
  transition: color 0.3s ease;
}
