/* your website index Styles */

/* Scroll Snap Effect */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 830px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-nav {
  position: absolute;
  top: 20px;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 20px;
}

.hero-nav a {
  font-size: 18px;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-nav a:hover {
  color: #BE930B;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 15px;
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  text-transform: uppercase;
  color: white;
  margin-bottom: 10px;
}

.hero-title {
  font-size: 64px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: white;
  line-height: 1.1;
}

.hero-icon {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: 2;
}

/* Brand Heritage Section */
.brand-heritage {
  background-color: #1C1C1C;
}

.brand-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 30px 20px;
}

.brand-gradient-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, white);
}

.brand-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}

.brand-title {
  width: 100%;
  font-size: 44px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: white;
  line-height: 1.1;
}

.brand-title span {
  color: #BE930B;
}

.brand-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-text p {
  font-size: 18px;
  color: rgba(244, 244, 244, 0.70);
  line-height: 1.6;
}

/* Global Scale Section */
.global-scale {
  background-color: #00263E;
}

.global-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.global-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
}

.global-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.global-title {
  font-size: 44px;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  margin-bottom: 14px;
}

.global-description {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.70);
  line-height: 1.6;
  margin-bottom: 14px;
}

.global-stats {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.global-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.global-stat-value {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #BE930B;
}

.global-stat-label {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(255, 255, 255, 0.70);
}

.global-image {
  width: 100%;
}

.global-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Technology Section */
.tech-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}

.tech-title {
  font-size: 44px;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  margin-bottom: 14px;
}

.tech-description {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.70);
  margin-bottom: 30px;
}

.tech-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.tech-image {
  width: 100%;
}

.tech-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* R&D Depth Section */
.rnd-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.rnd-title {
  font-size: 44px;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  margin-bottom: 14px;
}

.rnd-description {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.70);
  margin-bottom: 30px;
}

.rnd-image {
  width: 100%;
}

.rnd-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Brand Built Section */
.brand-built {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 830px;
  padding: 30px 20px;
}

.brand-built-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.brand-built-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-built-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.brand-built-subtitle {
  font-size: 36px;
  font-weight: 300;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.80);
  margin-bottom: 20px;
}

.brand-built-title {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  line-height: 1.1;
}

/* Brand Distilled Section */
.brand-distilled {
  background-color: #1C1C1C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.brand-distilled-content {
  text-align: center;
  width: 100%;
}

.brand-distilled-text {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  margin-bottom: 30px;
}

.brand-distilled-title {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.50);
  margin-bottom: 0;
}

.brand-distilled-subtitle {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  margin-bottom: 0;
}

.brand-distilled-highlight {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #BE930B;
  margin-bottom: 0;
}

/* Values Section */
.values-section {
  background-color: #1C1C1C;
}

.values-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.value-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-right: 30px;
  padding-bottom: 20px;
}

.value-icon {
  width: 33px;
  height: 31.5px;
  margin-bottom: 12px;
}

.value-title {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  text-transform: uppercase;
  color: #F4F4F4;
  margin-bottom: 12px;
}

.value-description {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

.value-divider {
  width: 1px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.10);
  align-self: center;
}

/* Parts Grid Section */
.parts-grid {
  width: 100%;
}

.parts-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
}

.parts-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thrive Section */
.thrive-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1C1C1C;
  padding: 30px 20px;
  text-align: center;
}

.thrive-subtitle {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  text-transform: uppercase;
  color: #F4F4F4;
  margin-bottom: 14px;
}

.thrive-text {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  margin-bottom: 14px;
}

.thrive-highlight {
  font-size: 20px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #BE930B;
  margin-bottom: 0;
}

/* Freedom Section */
.freedom-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 830px;
  background-color: black;
  overflow: hidden;
}

.freedom-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.freedom-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.freedom-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.freedom-subtitle {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  text-transform: uppercase;
  color: #F4F4F4;
  margin-bottom: 10px;
}

.freedom-title {
  font-size: 46px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  line-height: 1.1;
}

.freedom-icon {
  position: absolute;
  left: 10%;
  top: 20%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

/* Team Section */
.team-section {
  background-color: #1C1C1C;
}

.team-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 30px 20px;
}

.team-gradient-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, white);
}

.team-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}

.team-title {
  width: 100%;
  font-size: 44px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: white;
  line-height: 1.1;
}

.team-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.team-text p {
  font-size: 18px;
  color: rgba(244, 244, 244, 0.70);
  line-height: 1.6;
}

/* Mission Vision Values Section */
.mvv-section {
  background-color: #00263E;
}

.mvv-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
}

.mvv-item {
  margin-bottom: 60px;
}

.mvv-title {
  font-size: 36px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  text-transform: uppercase;
  color: #F4F4F4;
  text-align: center;
  margin-bottom: 30px;
}

.mvv-description {
  font-size: 20px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.70);
  text-align: center;
}

.mvv-values {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}

.mvv-value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mvv-value-icon {
  width: 64px;
  height: 64px;
  background-color: #BE930B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.mvv-value-text {
  font-size: 20px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.70);
  text-align: center;
}

.mvv-value-divider {
  width: 6px;
  height: 6px;
  background-color: rgba(244, 244, 244, 0.10);
  align-self: center;
  border-radius: 50%;
}

/* Thrive Confidence Section */
.thrive-confidence {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #1C1C1C;
  padding: 40px 20px;
}

.thrive-confidence-text {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #BE930B;
  margin-bottom: 0;
}

/* Thrive With Confidence Section */
.thrive-with-confidence {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 830px;
  background-color: black;
  overflow: hidden;
}

.thrive-with-confidence-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.thrive-with-confidence-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thrive-with-confidence-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.thrive-with-confidence-subtitle {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  text-transform: uppercase;
  color: #F4F4F4;
  margin-bottom: 10px;
}

.thrive-with-confidence-title {
  font-size: 64px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  line-height: 1.1;
}

.thrive-with-confidence-icon {
  position: absolute;
  left: 10%;
  top: 35%;
  transform: translate(-50%, -50%);
  z-index: 20;
}

/* At TLG Section */
.at-tlg {
  background-color: #1C1C1C;
}

.at-tlg-container {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  padding: 30px 20px;
}

.at-tlg-gradient-line {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, white);
}

.at-tlg-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}

.at-tlg-title {
  width: 100%;
  font-size: 44px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: white;
  line-height: 1.1;
}

.at-tlg-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.at-tlg-text p {
  font-size: 18px;
  color: rgba(244, 244, 244, 0.70);
  line-height: 1.6;
}

/* SmartDrive Section */
.smartdrive-section {
  background-color: #1C1C1C;
}

.smartdrive-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-content: space-between;
}

.smartdrive-card {
  width: 100%;
}

.smartdrive-image {
  height: 560px;
  margin-bottom: 20px;
}

.smartdrive-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.smartdrive-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.smartdrive-icon {
  margin-bottom: 0;
}

.smartdrive-title {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  color: white;
  margin-bottom: 12px;
}

.smartdrive-description {
  font-size: 18px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

/* Features Section */
.features-section {
  background-color: #1C1C1C;
}

.features-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 20px;
}

.features-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.features-card {
  flex: 1;
  min-width: 300px;
}

.features-card-bg {
  height: 315px;
  background-color: rgba(128, 128, 128, 0.2);
  margin-bottom: 20px;
  border-radius: 2px;
  position: relative;
}

.features-card-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 300;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(255, 255, 255, 0.15);
}

.features-card-title {
  font-size: 18px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  color: #F4F4F4;
  margin-bottom: 12px;
}

.features-card-description {
  font-size: 16px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(244, 244, 244, 0.70);
  line-height: 1.6;
}

.features-second-row {
  display: flex;
  flex-wrap: justify-center;
  gap: 30px;
}

.features-second-card {
  width: 420px;
}

/* Features Details Section */
.features-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-center;
  background-color: #1C1C1C;
  padding: 20px 20px;
}

.features-details-text {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #BE930B;
  margin-bottom: 0;
}

/* Bike Types Section */
.bike-types {
  background-color: #1C1C1C;
  padding: 30px 0;
}

.bike-types-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
}

.bike-type-card {
  width: 100%;
  position: relative;
}

.bike-type-image {
  height: 640px;
  overflow: hidden;
}

.bike-type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bike-type-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  z-index: 10;
}

.bike-type-title {
  font-size: 24px;
  font-weight: 600;
  font-family: 'Proxima Nova', sans-serif;
  color: white;
  margin-bottom: 12px;
}

.bike-type-description {
  font-size: 18px;
  font-family: 'Proxima Nova', sans-serif;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.6;
}

/* Partners Section */
.partners-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-center;
  background-color: #1C1C1C;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
}

.partners-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1320px;
}

.partners-text {
  font-size: 24px;
  font-weight: bold;
  font-family: 'Proxima Nova', sans-serif;
  color: #BE930B;
  margin-bottom: 30px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .hero-nav {
    flex-direction: row;
    align-items: center;
    padding: 12px 200px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-title {
    font-size: 86px;
  }
  
  .hero-icon {
    left: 20%;
    top: 15%;
  }
  
  .brand-container {
    padding: 90px 0;
  }
  
  .brand-gradient-line {
    top: 90px;
  }
  
  .brand-content {
    flex-direction: row;
    margin-top: 30px;
  }
  
  .brand-title {
    width: 40%;
    font-size: 58px;
  }
  
  .brand-text {
    width: 60%;
  }
  
  .global-container {
    padding: 90px 0;
  }
  
  .global-section {
    flex-direction: row;
    margin-bottom: 120px;
  }
  
  .global-content {
    width: 50%;
  }
  
  .global-title {
    font-size: 54px;
  }
  
  .global-description {
    font-size: 18px;
  }
  
  .global-image {
    width: 50%;
  }
  
  .global-stat-value {
    font-size: 42px;
  }
  
  .global-stat-label {
    font-size: 18px;
  }
  
  .tech-title {
    font-size: 54px;
  }
  
  .tech-description {
    font-size: 18px;
  }
  
  .tech-images {
    flex-direction: row;
  }
  
  .tech-image {
    width: 50%;
  }
  
  .rnd-title {
    font-size: 54px;
  }
  
  .rnd-description {
    font-size: 18px;
  }
  
  .brand-built {
    padding: 90px 60px;
  }
  
  .brand-built-subtitle {
    font-size: 58px;
  }
  
  .brand-built-title {
    font-size: 58px;
  }
  
  .brand-distilled {
    padding: 90px 60px;
  }
  
  .brand-distilled-text {
    font-size: 18px;
  }
  
  .brand-distilled-title {
    font-size: 58px;
  }
  
  .brand-distilled-subtitle {
    font-size: 58px;
  }
  
  .brand-distilled-highlight {
    font-size: 58px;
  }
  
  .values-container {
    flex-direction: row;
  }
  
  .value-card {
    padding-right: 30px;
    padding-bottom: 0;
    padding-top: 20px;
  }
  
  .value-title {
    font-size: 24px;
  }
  
  .value-description {
    font-size: 18px;
  }
  
  .parts-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .thrive-section {
    padding: 90px 60px;
  }
  
  .thrive-subtitle {
    font-size: 18px;
  }
  
  .thrive-text {
    font-size: 18px;
  }
  
  .thrive-highlight {
    font-size: 32px;
  }
  
  .freedom-title {
    font-size: 86px;
  }
  
  .freedom-icon {
    left: -2%;
    top: 25%;
  }
  
  .team-container {
    padding: 90px 0;
  }
  
  .team-gradient-line {
    top: 90px;
  }
  
  .team-content {
    flex-direction: row;
    margin-top: 30px;
  }
  
  .team-title {
    width: 40%;
    font-size: 58px;
  }
  
  .team-text {
    width: 60%;
  }
  
  .mvv-container {
    padding: 90px 0;
  }
  
  .mvv-item {
    margin-bottom: 120px;
  }
  
  .mvv-title {
    font-size: 54px;
  }
  
  .mvv-description {
    font-size: 32px;
  }
  
  .mvv-values {
    flex-direction: row;
  }
  
  .thrive-confidence {
    padding: 90px 60px;
  }
  
  .thrive-confidence-text {
    font-size: 32px;
  }
  
  .thrive-with-confidence {
    padding: 90px 60px;
  }
  
  .thrive-with-confidence-subtitle {
    font-size: 18px;
  }
  
  .thrive-with-confidence-title {
    font-size: 86px;
  }
  
  .thrive-with-confidence-icon {
    left: -2%;
  }
  
  .at-tlg-container {
    padding: 90px 0 30px;
  }
  
  .at-tlg-gradient-line {
    top: 90px;
  }
  
  .at-tlg-content {
    flex-direction: row;
    margin-top: 30px;
  }
  
  .at-tlg-title {
    width: 40%;
    font-size: 58px;
  }
  
  .at-tlg-text {
    width: 60%;
  }
  
  .smartdrive-container {
    padding: 90px 0;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-container {
    padding: 90px 0;
  }
  
  .features-second-card {
    width: 420px;
  }
  
  .features-details {
    padding: 30px 60px;
  }
  
  .features-details-text {
    font-size: 32px;
  }
  
  .bike-type-card {
    width: 33.333%;
  }
  
  .partners-section {
    padding: 90px 60px;
  }
  
  .partners-text {
    font-size: 32px;
  }
}

/* Blog Posts Section */
.blog-posts-section {
  background-color: #1C1C1C;
  padding: 1.875rem;
}

@media (min-width: 768px) {
  .blog-posts-section {
    padding: 3.125rem;
  }
}

.blog-posts-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .blog-posts-container {
    gap: 1.875rem;
  }
}

.blog-posts-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-posts-header h2 {
  font-size: 26px;
  font-weight: bold;
  color: #F4F4F4;
}

@media (min-width: 768px) {
  .blog-posts-header h2 {
    font-size: 36px;
  }
}

.view-all-button {
  padding: 14px 30px;
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid #BE930B;
  color: #BE930B;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .view-all-button {
    font-size: 16px;
  }
}

.view-all-button:hover {
  background-color: #BE930B;
  color: #FFFFFF;
}

.blog-posts-content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

@media (min-width: 768px) {
  .blog-posts-content {
    flex-direction: row;
  }
}

.main-post {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 768px) {
  .main-post {
    height: 758px;
    justify-content: flex-end;
    position: relative;
  }
}

.main-post-image-desktop {
  display: none;
}

@media (min-width: 768px) {
  .main-post-image-desktop {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  
  .main-post-image-desktop img,
  .main-post-img {
    width: 758px;
    height: 758px;
    object-fit: cover;
  }
  
  .main-post-image-desktop .gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 74%, rgba(0,0,0,1) 97%);
  }
}

.main-post-image-mobile {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .main-post-image-mobile {
    display: none;
  }
}

.main-post-image-mobile img,
.main-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-post-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 1.25rem;
}

@media (min-width: 768px) {
  .main-post-content {
    gap: 1.25rem;
    padding: 2.5rem;
    max-width: 678px;
  }
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 24px;
}

.post-meta-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(28, 28, 28, 0.7);
}

@media (min-width: 768px) {
  .post-meta-icon {
    color: rgba(255, 255, 255, 0.7);
  }
}

.post-date {
  font-size: 14px;
  color: rgba(28, 28, 28, 0.7);
}

@media (min-width: 768px) {
  .post-date {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
  }
}

.main-post h3 {
  font-size: 18px;
  font-weight: bold;
  color: #1C1C1C;
  word-break: break-word;
}

@media (min-width: 768px) {
  .main-post h3 {
    font-size: 36px;
    color: #FFFFFF;
  }
}

.main-post p {
  font-size: 14px;
  color: rgba(28, 28, 28, 0.7);
  line-height: 1.218;
  word-break: break-word;
}

@media (min-width: 768px) {
  .main-post p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
  }
}

.read-more-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1C1C1C;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .read-more-link {
    font-size: 16px;
    color: #FFFFFF;
  }
}

.side-posts {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.side-post {
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .side-post {
    width: 532px;
    flex-direction: row;
  }
}

.side-post-image {
  width: 100%;
  height: 200px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .side-post-image {
    width: 256px;
    height: 364px;
  }
}

.side-post-image img,
.side-post-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.side-post-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

@media (min-width: 768px) {
  .side-post-content {
    width: 256px;
    gap: 1.25rem;
  }
}

.side-post h3 {
  font-size: 18px;
  font-weight: bold;
  color: #F4F4F4;
  word-break: break-word;
}

@media (min-width: 768px) {
  .side-post h3 {
    font-size: 24px;
  }
}

.side-post p {
  font-size: 14px;
  color: rgba(244,244,244,0.70);
  line-height: 1.218;
  max-height: 165px;
  overflow: hidden;
  word-break: break-word;
}

@media (min-width: 768px) {
  .side-post p {
    font-size: 16px;
  }
}

.no-posts-message {
  text-align: center;
  padding: 6.25rem 0;
  color: #666666;
}