/*!
Theme Name: apexawards-blog
Theme URI: https://apexawards.events
Author: apexawards
Author URI: https://apexawards.events
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: apexawards-blog
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

apexawards-blog is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

@import url("https://api.fontshare.com/v2/css?f[]=satoshi@400&display=swap");

@font-face {
  font-family: "Moglan Demo";
  src:
    url("https://db.onlinewebfonts.com/t/bb37aa4c890a41af0059749cc80e352d.woff") format("woff"),
    local("Moglan Demo"),
    local("MoglanDemo"),
    local("Moglan Demo Regular");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Satoshi";
  src: local("Satoshi"), local("Satoshi-Regular"), local("Satoshi Regular");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --bg: #020202;
  --gold: #ffc561;
  --white: #f4f4f4;
  --text-dim: rgba(255, 255, 255, 0.92);
  --card-overlay: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 34%,
      rgba(0, 0, 0, 0.44) 65%,
      rgba(0, 0, 0, 0.78) 100%);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--white);
  font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
}

:is(.leadership, [class^="leadership"], [class*=" leadership"]) {
  width: min(1440px, 100%);
  margin: 124px auto 24px;
  padding: 0 clamp(12px, 2vw, 24px);
  display: block;
}

:is(.leadership, [class^="leadership"], [class*=" leadership"])+ :is(.leadership, [class^="leadership"], [class*=" leadership"]) {
  margin-top: 56px;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 34px;
}

.section-title {
  color: var(--gold);
  font-family: "Moglan Demo", sans-serif;
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.view-all {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(132px, 16vw, 190px);
  height: clamp(44px, 5.2vw, 62px);
  border: 1px solid rgba(211, 169, 79, 0.7);
  color: var(--gold);
  background: transparent;
  font-size: clamp(18px, 1.8vw, 20px);
  font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.view-all::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}

.view-all::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
}

.card {
  position: relative;
  min-height: clamp(280px, 30vw, 405px);
  border: 1px solid rgba(211, 169, 79, 0.8);
  overflow: hidden;
  background: #101010;
  isolation: isolate;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    var(--card-overlay),
    linear-gradient(var(--gold), var(--gold)),
    linear-gradient(var(--gold), var(--gold));
  background-repeat: no-repeat;
  background-size:
    cover,
    12px 2px,
    2px 12px;
  background-position:
    center,
    top right,
    top right;
  z-index: 1;
}

.card::after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 12px;
  height: 12px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  z-index: 3;
  pointer-events: none;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.01);
}

.card-content {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0 clamp(10px, 1.2vw, 14px) clamp(10px, 1.2vw, 14px);
  z-index: 2;
}

.card-title {
  color: var(--text-dim);
  font-size: clamp(20px, 1.65vw, 22px);
  font-weight: 400;
  line-height: 1.28;
  letter-spacing: 0.1px;
  margin-bottom: 8px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: clamp(15px, 1.25vw, 16px);
  font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
}

.read-more span {
  font-size: clamp(16px, 1.35vw, 18px);
  transform: translateY(-1px);
}

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

@media (max-width: 820px) {
  .section-header {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .view-all {
    width: 140px;
    height: 46px;
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .leadership {
    padding: 0 16px 20px;
  }

  .section-header {
    margin-bottom: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: 300px;
  }

  .section-title {
    font-size: 34px;
    line-height: 1.1;
  }

  .view-all {
    width: 128px;
    height: 42px;
    font-size: 18px;
  }

  .card-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .read-more,
  .read-more span {
    font-size: 17px;
  }
}

/* inner page css */

.inner-page {
  min-height: 100vh;
  padding: clamp(44px, 7vw, 80px) 16px 64px;
  /* Subtle texture to match the reference background */
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    var(--bg);
  background-size: 32px 32px, 32px 32px, auto;
}

.inner-wrap {
  width: min(100%, 1040px);
  margin: 0 auto;
}

.inner-content {
  width: min(100%, 760px);
  margin: 0 auto;
}

.inner-page .inner-content p {
  color: #fff;
    font-size: 18px;
    line-height: 1.8;
    font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 10px;
}

.inner-page .inner-content a {
  color: #87ceeb;
}

.inner-page .inner-content h1,
.inner-page .inner-content h2,
.inner-page .inner-content h3,
.inner-page .inner-content h4,
.inner-page .inner-content h5,
.inner-page .inner-content h6,
.inner-page .inner-content h1 b,
.inner-page .inner-content h2 b,
.inner-page .inner-content h3 b,
.inner-page .inner-content h4 b,
.inner-page .inner-content h5 b,
.inner-page .inner-content h6 b,
.inner-page .inner-content h1 strong,
.inner-page .inner-content h2 strong,
.inner-page .inner-content h3 strong,
.inner-page .inner-content h4 strong,
.inner-page .inner-content h5 strong,
.inner-page .inner-content h6 strong {
  color: #ffc561;
  font-size: 24px;
  line-height: 1.3;
  font-family:  "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 10px;
}

.inner-page .inner-content h3,
.inner-page .inner-content h3 b,
.inner-page .inner-content h3 strong {
  font-size: 26px;
}

.lead-para {
  color: var(--gold);
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0.2px;
  margin-bottom: clamp(34px, 4.5vw, 54px);
}

.body-para {
  color: rgba(244, 244, 244, 0.82);
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.1px;
  margin-bottom: 24px;
}

.body-para:last-of-type {
  margin-bottom: 0;
}

.section-divider {
  position: relative;
  height: 1px;
  margin: clamp(30px, 4vw, 44px) 0 clamp(36px, 4.5vw, 56px);
  background: rgba(255, 197, 97, 0.25);
}

.section-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translate(-50%, -50%) rotate(45deg);
}

.inner-title {
  color: var(--gold);
  font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: clamp(20px, 3vw, 30px);
}

.feature-image {
  margin-top: clamp(24px, 3.2vw, 36px);
  border: 2px solid rgba(255, 197, 97, 0.82);
  overflow: hidden;
  position: relative;
  background: #0b0b0b;
}

.feature-image::after {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 14px;
  height: 14px;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  pointer-events: none;
}

.feature-image::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  width: 14px;
  height: 14px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  pointer-events: none;
  z-index: 2;
}

.feature-image img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.blog-rich-content {
  margin-top: 0;
}

.blog-rich-content h2,
.blog-rich-content h3 {
  color: var(--gold);
  font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  line-height: 1.15;
}

.blog-rich-content h2 {
  font-size: 24px;
  margin: clamp(24px, 3.2vw, 36px) 0 16px;
}

.blog-rich-content h3 {
  font-size: 26px;
  margin: 0 0 16px;
  text-transform: none;
  letter-spacing: 0.2px;
  font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.blog-rich-content p {
  color: rgba(244, 244, 244, 0.82);
  font-size: 18px;
  line-height: 1.95;
  letter-spacing: 0.1px;
  margin: 0 0 24px;
}

.quote-card {
  margin: 26px 0;
  padding: 18px 20px 14px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg,
      rgba(255, 197, 97, 0.12) 0%,
      rgba(255, 197, 97, 0) 75%);
}

.quote-card p {
  margin: 0;
  color: rgba(244, 244, 244, 0.95);
  font-style: italic;
  line-height: 1.85;
}

.quote-card cite {
  display: block;
  margin-top: 10px;
  color: var(--gold);
  font-size: 18px;
  font-style: normal;
}

.key-points {
  margin: 28px 0 26px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 197, 97, 0.7);
  background: rgba(255, 197, 97, 0.03);
}

.key-points ul {
  margin: 0;
  padding-left: 18px;
}

.key-points li {
  color: rgba(244, 244, 244, 0.84);
  font-size: 18px;
  line-height: 1.75;
  margin: 0 0 10px;
}

.key-points li:last-child {
  margin-bottom: 0;
}

.steps-block {
  margin: 30px 0 28px;
}

.steps-title {
  color: var(--gold);
  font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.35;
  margin: 0 0 16px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px 14px 12px;
  margin-bottom: 12px;
  border-left: 2px solid var(--gold);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0.01) 100%);
}

.step-item:last-child {
  margin-bottom: 0;
}

.step-number {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.step-text {
  color: rgba(244, 244, 244, 0.86);
  font-size: 18px;
  line-height: 1.65;
  margin: 0;
}

.closing-quote {
  margin-top: 28px;
  padding: 26px 18px;
  text-align: center;
  border: 1px solid rgba(255, 197, 97, 0.55);
  background: linear-gradient(180deg,
      rgba(255, 197, 97, 0.05) 0%,
      rgba(255, 197, 97, 0.01) 100%);
}

.closing-quote p {
  margin: 0;
  color: rgba(244, 244, 244, 0.9);
  font-size: 18px;
  font-style: italic;
  line-height: 1.85;
}

.related-articles {
  width: min(100%, 1040px);
  margin: clamp(54px, 7vw, 90px) auto 0;
}

.related-topline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.related-topline::before {
  content: "";
  width: 54px;
  height: 2px;
  background: var(--gold);
  opacity: 0.85;
}

.related-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.related-title {
  color: rgba(244, 244, 244, 0.95);
  font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin: 0;
}

.related-category {
  color: rgba(255, 197, 97, 0.9);
  font-size: 12px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

@media (max-width: 640px) {
  .inner-page {
    padding: 34px 14px 44px;
  }

  .lead-para {
    line-height: 1.65;
  }

  .body-para {
    line-height: 1.8;
  }

  .quote-card {
    padding: 14px 14px 12px;
  }

  .key-points {
    padding: 14px;
  }

  .step-item {
    padding: 12px 10px;
  }

  .step-number {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 12px;
  }

  .closing-quote {
    padding: 18px 12px;
  }

  .related-head {
    align-items: center;
  }

  .related-title {
    font-size: 34px;
  }
}

/* Header Style: Apex Awards Header */
.apx-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

.apx-header a {
  text-decoration: none;
}

.apx-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar-glass {
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0.72) 0%,
      rgba(8, 8, 8, 0.56) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.apx-navbar {
  position: relative;
}

.apx-navbar-main {
  position: relative;
  z-index: 10;
}

.apx-navbar-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  padding: 0 16px;
  position: relative;
}

.apx-nav-left {
  display: none;
  align-items: center;
  gap: 32px;
}

.apx-nav-link {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.apx-nav-link.is-active,
.apx-nav-link:hover {
  color: #ffc561;
}

.apx-logo-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.apx-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apx-logo-img {
  width: 75px;
  height: auto;
  display: block;
}

.apx-logo-curve {
  position: absolute;
  bottom: -2.7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 9.6rem;
  height: 4.8rem;
  border-radius: 0 0 999px 999px;
  border-top: 0;
}

.apx-mobile-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 30;
}

.apx-right-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.apx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  position: relative;
  gap: 8px;
}

.apx-btn svg {
  display: block;
  flex-shrink: 0;
}

.apx-btn-primary {
  background: #ffc561;
  border: 1px solid #ffc561;
  color: #281b09;
  padding: 14px 22px;
  box-shadow: none;
}

.apx-btn-primary:hover {
  background: #e6b056;
}

.apx-btn-outline {
  position: relative;
  border: 1px solid rgba(255, 197, 97, 0.45);
  background: rgba(10, 11, 15, 0.7);
  color: #ffc561;
  padding: 14px 22px;
}

.apx-btn-outline:hover {
  background: rgba(24, 20, 14, 0.9);
}

.apx-right-actions .apx-btn-outline .apx-btn-corner-top {
  top: -1px;
  right: -1px;
}

.apx-right-actions .apx-btn-outline .apx-btn-corner-bottom {
  bottom: -1px;
  left: -1px;
}

.apx-desktop-toggle {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.apx-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

.apx-mobile-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 72px;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 999;
}

.apx-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 24px;
}

.apx-mobile-link {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  padding: 12px 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.apx-mobile-link.is-active {
  color: #ffc561;
  background: rgba(255, 255, 255, 0.09);
}

.apx-desktop-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 450px;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
  background: #0a0a0a;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.apx-desktop-glow {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.apx-desktop-glow-top {
  top: 0;
  height: 200px;
  opacity: 0.4;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255, 170, 50, 0.25) 0%, transparent 70%);
}

.apx-desktop-glow-bottom {
  bottom: 0;
  height: 200px;
  opacity: 0.5;
  background: radial-gradient(ellipse 90% 100% at 50% 100%, rgba(255, 170, 50, 0.3) 0%, transparent 70%);
}

.apx-desktop-panel-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 36px;
}

.apx-desktop-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 32px;
  padding-bottom: 14px;
}

.apx-btn-panel {
  position: relative;
  border: 1px solid rgba(255, 197, 97, 0.7);
  color: #ffc561;
  padding: 12px 18px;
  font-size: 12px;
}

.apx-btn-panel-outline {
  border-color: rgba(255, 197, 97, 0.3);
}

.apx-btn-corner {
  pointer-events: none;
  position: absolute;
  line-height: 0;
}

.apx-btn-corner svg {
  display: block;
}

.apx-btn-corner-top {
  top: 0;
  right: 0;
}

.apx-btn-corner-bottom {
  bottom: 0;
  left: 0;
}

.apx-close-btn {
  margin-left: auto;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apx-close-btn img {
  width: 20px;
  height: 20px;
  display: block;
}

.apx-menu-section {
  margin-top: 24px;
}

.apx-menu-section h3 {
  color: #ffc561;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.apx-menu-divider {
  width: 64px;
  height: 2px;
  background: #ffc561;
  margin-bottom: 20px;
}

.apx-menu-section ul li {
  margin-bottom: 16px;
}

.apx-panel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.apx-panel-link span {
  color: #ffc561;
  font-size: 10px;
}

.apx-panel-link:hover {
  color: #ffc561;
}

.apx-travel-head {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.apx-star {
  color: #ffc561;
  font-size: 10px;
}

.apx-travel-link {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.apx-travel-link:hover,
.apx-travel-item.travel-open .apx-travel-link {
  color: #ffc561;
}

.apx-travel-toggle {
  margin-left: 2px;
  border: 0;
  background: transparent;
  color: #ffc561;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.apx-travel-item.travel-open .apx-travel-toggle {
  transform: rotate(180deg);
}

.apx-travel-drop {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  margin-left: 4px;
}

.apx-travel-item.travel-open .apx-travel-drop {
  max-height: 240px;
  margin-top: 12px;
}

.apx-travel-drop ul {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 197, 97, 0.2);
}

.apx-travel-drop li {
  margin-bottom: 10px;
}

.apx-travel-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  transition: color 0.2s ease;
}

.apx-travel-sub-link span {
  color: rgba(255, 197, 97, 0.6);
  font-size: 8px;
}

.apx-travel-sub-link:hover {
  color: #ffc561;
}

.apx-header.menu-open .apx-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.apx-header.menu-open .apx-mobile-menu {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.apx-header.menu-open .apx-desktop-panel {
  transform: translateX(0);
}

@media (min-width: 1200px) {
  .apx-navbar-inner {
    min-height: 92px;
    padding: 0 20px;
  }

  .apx-logo-wrap {
    top: 24px;
    width: 74px;
    height: 84px;
  }

  .apx-nav-left,
  .apx-right-actions {
    display: flex;
  }

  .apx-mobile-toggle,
  .apx-mobile-menu {
    display: none;
  }
}

@media (max-width: 1199px) {
  .apx-desktop-panel {
    display: none;
  }
}

/* ===== Apex React Footer (ported from Next.js component) ===== */
.apx-react-footer {
  width: 100%;
  color: #fff;
  background: linear-gradient(to right, #000000, #2b1f0a, #000000);
}

.apx-react-footer .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.apx-react-footer .grid.grid-cols-1.gap-10.md\:grid-cols-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.apx-react-footer .space-y-4>*+* {
  margin-top: 1rem;
}

.apx-react-footer .relative.h-12.w-40.mb-4 {
  position: relative;
  height: 3rem;
  width: 10rem;
  margin-bottom: 1rem;
}

.apx-react-footer .object-contain.m-0.w-full.h-full {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  margin: 0;
}

.apx-react-footer .text-sm.text-white\/70.leading-relaxed {
  font-size: 0.875rem;
  line-height: 1.625;
  color: rgba(255, 255, 255, 0.7);
  max-width: 36rem;
}

.apx-react-footer .flex.gap-3.pt-2 {
  display: flex;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.apx-react-footer .flex.h-8.w-8.items-center.justify-center.rounded-full.bg-\[\#f5c14b\] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #f5c14b;
}

.apx-react-footer .flex.h-8.w-8.items-center.justify-center.rounded-full.bg-\[\#f5c14b\] img {
  width: 16px;
  height: 16px;
  display: block;
}

.apx-react-footer .flex.flex-col.md\:flex-row.justify-evenly.w-full.gap-4.p-3 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 100%;
  gap: 1rem;
  padding: 0.75rem;
}

.apx-react-footer .mb-4.text-lg.font-semibold.text-\[\#f5c14b\] {
  margin-bottom: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  color: #f5c14b;
}

.apx-react-footer .space-y-2.text-sm.text-white\/75 {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.75);
}

.apx-react-footer .space-y-2.text-sm.text-white\/75>*+* {
  margin-top: 0.5rem;
}

.apx-react-footer .hover\:text-white {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.apx-react-footer .hover\:text-white:hover {
  color: #ffffff;
}

.apx-react-footer .space-y-3.text-sm.text-white {
  font-size: 0.875rem;
  color: #ffffff;
}

.apx-react-footer .space-y-3.text-sm.text-white>*+* {
  margin-top: 0.75rem;
}

.apx-react-footer .flex.items-center.gap-2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.apx-react-footer .flex.items-center.gap-2 img {
  width: 16px;
  height: 16px;
  display: block;
}

.apx-react-footer .mt-10.flex.flex-col.items-center.justify-between.gap-4.border-t.border-white\/10.pt-6.text-xs.text-white\/50.md\:flex-row {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.apx-react-footer .flex.gap-6 {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 639px) {
  .apx-react-footer .container.max-sm\:px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media (min-width: 768px) {
  .apx-react-footer .grid.grid-cols-1.gap-10.md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .apx-react-footer .flex.flex-col.md\:flex-row.justify-evenly.w-full.gap-4.p-3 {
    flex-direction: row;
  }

  .apx-react-footer .mt-10.flex.flex-col.items-center.justify-between.gap-4.border-t.border-white\/10.pt-6.text-xs.text-white\/50.md\:flex-row {
    flex-direction: row;
  }
}

/* ===== Blog Template Banner ===== */
.apx-blog-banner {
  position: relative;
  width: 100%;
  min-height: 423px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  margin-top: 60px;
}

.apx-blog-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.42) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.68) 100%);
}

.apx-blog-banner-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.apx-blog-banner-title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(34px, 4.8vw, 58px);
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.apx-blog-banner-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(14px, 1.8vw, 24px);
  line-height: 1.35;
  font-weight: 400;
}

@media (max-width: 767px) {
  .apx-blog-banner {
    min-height: 280px;
  }
}

/* ===== Single Post Top Banner ===== */
.apx-single-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.apx-single-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(157, 115, 32, 0.38) 0%,
      rgba(0, 0, 0, 0.24) 24%,
      rgba(0, 0, 0, 0.34) 56%,
      rgba(0, 0, 0, 0.46) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.26) 46%,
      rgba(0, 0, 0, 0.72) 100%
    );
}

.apx-single-banner-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 52px;
}

.apx-single-banner-chip {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border: 1px solid rgba(245, 193, 75, 0.4);
  background: rgba(245, 193, 75, 0.12);
  color: #f5c14b;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
}

.apx-single-banner-title {
  margin: 0;
  max-width: 920px;
  color: #ffffff;
  font-size: 44px;
  line-height: 1.06;
  font-weight: 500;
  text-transform: uppercase;
}

.apx-single-banner-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
}

.apx-single-banner-meta span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.apx-single-banner-meta span + span {
  padding-left: 14px;
}

.apx-single-banner-meta span + span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 9999px;
  background: #f5c14b;
}

@media (max-width: 991px) {
  .apx-single-banner {
    min-height: 430px;
  }
}

@media (max-width: 767px) {
  .apx-single-banner {
    min-height: 340px;
  }

  .apx-single-banner-content {
    padding: 0 16px 30px;
  }

  .apx-single-banner-meta {
    gap: 10px;
    font-size: 12px;
  }

  .apx-single-banner-meta span + span {
    padding-left: 10px;
  }
}

/* ===== Single Page uses master blog banner ===== */
.apx-blog-banner-single {
  min-height: 420px;
}

@media (max-width: 767px) {
  .apx-blog-banner-single {
    min-height: 300px;
  }
}

/* ===== Archive Page uses master blog banner ===== */
.apx-blog-banner-archive {
  min-height: 360px;
}

@media (max-width: 767px) {
  .apx-blog-banner-archive {
    min-height: 280px;
  }
}

.ann-page {
      min-height: 100vh;
      background:
        linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        var(--bg);
      background-size: 32px 32px, 32px 32px, auto;
      padding: clamp(28px, 4vw, 44px) 0 44px;
    }

    .ann-wrap {
      width: min(1400px, 100%);
      margin: 0 auto;
      padding: 0 clamp(14px, 2vw, 34px);
    }

    .ann-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 28px;
    }

    .ann-title {
      margin: 0 0 6px;
      color: rgba(244, 244, 244, 0.95);
      font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: 0.4px;
    }

    .ann-subtitle {
      margin: 0;
      color: rgba(244, 244, 244, 0.72);
      font-size: 18px;
      line-height: 1.6;
    }

    .ann-archive {
      color: var(--gold);
      text-decoration: none;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }

    .ann-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(320px, 1fr);
      gap: clamp(16px, 2vw, 22px);
      align-items: stretch;
    }

    .ann-feature-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      min-height: clamp(410px, 50vw, 610px);
      isolation: isolate;
      border: 1px solid rgba(255, 197, 97, 0.25);
      background: #101010;
    }

    .ann-feature-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(
          180deg,
          rgba(0, 0, 0, 0.04) 12%,
          rgba(0, 0, 0, 0.58) 64%,
          rgba(0, 0, 0, 0.86) 100%
        );
      z-index: 1;
    }

    .ann-feature-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ann-feature-content {
      position: absolute;
      left: clamp(16px, 2vw, 24px);
      right: clamp(16px, 2vw, 24px);
      bottom: clamp(18px, 2.2vw, 30px);
      z-index: 2;
    }

    .ann-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .ann-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      height: 28px;
      padding: 0 14px;
      border-radius: 100px;
      background: var(--gold);
      color: #131313;
      font-size: 18px;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-weight: 700;
    }

    .ann-date {
      color: rgba(244, 244, 244, 0.78);
      font-size: 18px;
      letter-spacing: 0.2px;
    }

    .ann-feature-title {
      margin: 0 0 12px;
      color: rgba(244, 244, 244, 0.96);
      font-size: 24px;
      font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 400;
      line-height: 1.2;
    }

    .ann-feature-text {
      margin: 0 0 16px;
      color: rgba(244, 244, 244, 0.78);
      font-size: 18px;
      line-height: 1.75;
      max-width: 95%;
    }

    .ann-read {
      color: var(--gold);
      text-decoration: none;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .ann-side {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .ann-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 14px;
      align-items: center;
      padding: 6px 0;
    }

    .ann-item-thumb {
      width: 120px;
      height: 86px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255, 197, 97, 0.28);
    }

    .ann-item-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ann-item-meta {
      color: rgba(255, 197, 97, 0.86);
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin: 0 0 5px;
    }

    .ann-item-title {
      margin: 0 0 8px;
      color: rgba(244, 244, 244, 0.95);
      font-size: 24px;
      font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 400;
      line-height: 1.3;
    }

    .ann-item-read {
      color: rgba(244, 244, 244, 0.65);
      text-decoration: none;
      font-size: 18px;
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .ann-media-box {
      margin-top: auto;
      background: #181820;
      border-radius: 16px;
      border: 1px solid rgba(255, 197, 97, 0.12);
      padding: clamp(18px, 2vw, 28px);
    }

    .ann-media-title {
      margin: 0 0 8px;
      color: rgba(244, 244, 244, 0.95);
      font-size: 24px;
      line-height: 1.2;
    }

    .ann-media-text {
      margin: 0 0 18px;
      color: rgba(244, 244, 244, 0.68);
      font-size: 18px;
      line-height: 1.65;
    }

    .ann-media-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      height: 58px;
      border: 1px solid rgba(255, 197, 97, 0.65);
      color: var(--gold);
      text-decoration: none;
      font-size: 18px;
      background: transparent;
    }

    .ann-media-btn::after {
      content: "";
      position: absolute;
      top: -1px;
      right: -1px;
      width: 12px;
      height: 12px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
    }

    .ann-media-btn::before {
      content: "";
      position: absolute;
      left: -1px;
      bottom: -1px;
      width: 12px;
      height: 12px;
      border-left: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
    }

    .ann-bottom {
      margin-top: clamp(22px, 3vw, 34px);
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .ann-wide-card {
      position: relative;
      min-height: 0;
      height: clamp(180px, 20vw, 230px);
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid rgba(255, 197, 97, 0.62);
      isolation: isolate;
      background: #111;
    }

    .ann-wide-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.12) 20%,
        rgba(0, 0, 0, 0.56) 70%,
        rgba(0, 0, 0, 0.84) 100%
      );
      z-index: 1;
    }

    .ann-wide-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .ann-wide-content {
      position: absolute;
      left: clamp(16px, 2vw, 28px);
      right: clamp(16px, 2vw, 28px);
      bottom: clamp(16px, 2vw, 24px);
      z-index: 2;
    }

    .ann-wide-title {
      margin: 0 0 10px;
      color: rgba(244, 244, 244, 0.96);
      font-size: 24px;
      font-family: "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      font-weight: 400;
      line-height: 1.25;
    }

    .ann-wide-text {
      margin: 0 0 14px;
      color: rgba(244, 244, 244, 0.8);
      font-size: 18px;
      line-height: 1.65;
      max-width: 95%;
    }

    @media (max-width: 1100px) {
      .ann-layout {
        grid-template-columns: 1fr;
      }

      .ann-item-title {
        font-size: 24px;
      }
    }

    @media (max-width: 640px) {
      .ann-header {
        align-items: flex-start;
        flex-direction: column;
      }

      .ann-subtitle {
        font-size: 15px;
      }

      .ann-item {
        grid-template-columns: 96px 1fr;
        gap: 10px;
      }

      .ann-item-thumb {
        width: 96px;
        height: 72px;
      }

      .ann-feature-title {
        font-size: 26px;
      }

      .ann-media-btn {
        width: 100%;
      }

      .ann-wide-title {
        font-size: 24px;
      }

      .ann-wide-card {
        height: 220px;
      }
    }



    .latest-inner-page {
      min-height: 100vh;
      background:
        linear-gradient(rgba(255, 255, 255, 0.014) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        var(--bg);
      background-size: 32px 32px, 32px 32px, auto;
      padding: clamp(30px, 4.5vw, 52px) 0 54px;
    }

    .latest-inner-wrap {
      width: min(1200px, 100%);
      margin: 0 auto;
      padding: 0 clamp(12px, 2vw, 28px);
    }

    .latest-hero {
      border: 1px solid rgba(255, 197, 97, 0.78);
      overflow: hidden;
      position: relative;
      background: #0f0f0f;
      margin-bottom: clamp(18px, 2.2vw, 28px);
    }

    .latest-hero::after {
      content: "";
      position: absolute;
      top: -1px;
      right: -1px;
      width: 12px;
      height: 12px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
      pointer-events: none;
    }

    .latest-hero::before {
      content: "";
      position: absolute;
      left: -1px;
      bottom: -1px;
      width: 12px;
      height: 12px;
      border-left: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
      pointer-events: none;
      z-index: 2;
    }

    .latest-hero img {
      width: 100%;
      height: clamp(240px, 43vw, 520px);
      object-fit: cover;
      display: block;
    }

    .latest-body {
      width: min(760px, 100%);
      margin: 0 auto;
    }

    .latest-intro {
      margin: 0 0 16px;
      color: rgba(244, 244, 244, 0.86);
      font-size: 18px;
      line-height: 1.92;
    }

    .latest-intro strong {
      color: rgba(244, 244, 244, 0.96);
      font-weight: 400;
    }

    .latest-text {
      margin: 0 0 18px;
      color: rgba(244, 244, 244, 0.78);
      font-size: 18px;
      line-height: 1.95;
    }

    .latest-text:last-child {
      margin-bottom: 0;
    }

    .latest-bottom {
      margin-top: clamp(38px, 5vw, 64px);
    }

    .about-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 1fr);
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 197, 97, 0.2);
      background: #14141a;
      margin-bottom: 18px;
    }

    .about-content {
      padding: clamp(20px, 3vw, 34px);
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
    }

    .about-title {
      margin: 0 0 14px;
      color: var(--gold);
      font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.2;
    }

    .about-text {
      margin: 0 0 14px;
      color: rgba(244, 244, 244, 0.74);
      font-size: 14px;
      line-height: 1.82;
    }

    .about-text:last-of-type {
      margin-bottom: 16px;
    }

    .about-link {
      color: var(--gold);
      text-decoration: none;
      font-size: 12px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .about-image img {
      width: 100%;
      height: 100%;
      min-height: 280px;
      object-fit: cover;
      display: block;
    }

    .subscribe-card {
      position: relative;
      border: 1px solid rgba(255, 197, 97, 0.6);
      background: #18181b;
      padding: clamp(22px, 3vw, 30px);
      display: grid;
      grid-template-columns: minmax(220px, 1fr) minmax(280px, 1.3fr);
      gap: clamp(16px, 2vw, 24px);
      align-items: center;
    }

    .subscribe-card::after {
      content: "";
      position: absolute;
      top: -1px;
      right: -1px;
      width: 12px;
      height: 12px;
      border-top: 2px solid var(--gold);
      border-right: 2px solid var(--gold);
      pointer-events: none;
    }

    .subscribe-card::before {
      content: "";
      position: absolute;
      left: -1px;
      bottom: -1px;
      width: 12px;
      height: 12px;
      border-left: 2px solid var(--gold);
      border-bottom: 2px solid var(--gold);
      pointer-events: none;
    }

    .subscribe-title {
      margin: 0 0 10px;
      color: var(--gold);
      font-family: "Moglan Demo", "Satoshi", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.15;
      text-transform: uppercase;
    }

    .subscribe-text {
      margin: 0;
      color: rgba(244, 244, 244, 0.72);
      font-size: 14px;
      line-height: 1.7;
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }

    .subscribe-input {
      width: 100%;
      height: 44px;
      border: 1px solid rgba(255, 197, 97, 0.45);
      background: rgba(0, 0, 0, 0.24);
      color: rgba(244, 244, 244, 0.92);
      padding: 0 12px;
      font-size: 13px;
      outline: none;
    }

    .subscribe-input::placeholder {
      color: rgba(244, 244, 244, 0.62);
    }

    .subscribe-btn {
      grid-column: 1 / -1;
      height: 44px;
      border: 1px solid rgba(255, 197, 97, 0.55);
      color: var(--gold);
      background: rgba(0, 0, 0, 0.22);
      font-size: 14px;
      letter-spacing: 0.4px;
      cursor: pointer;
    }

    @media (max-width: 640px) {
      .latest-inner-page {
        padding: 22px 0 36px;
      }

      .latest-intro,
      .latest-text {
        font-size: 16px;
        line-height: 1.82;
      }

      .about-card,
      .subscribe-card {
        grid-template-columns: 1fr;
      }

      .subscribe-form {
        grid-template-columns: 1fr;
      }
    }