/* Import Montserrat font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap');

.articles-section {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}

/* Background Image */
.articles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

/* Dark Overlay */
.articles-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

/* Content Container */
.articles-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  padding: 80px 40px;
}

/* Grid Layout */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Individual Column */
.articles-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Icon Styling */
.articles-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

/* Title */
.articles-title {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 30px 0;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Text */
.articles-text {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: white;
  line-height: 1.5;
  margin: 0;
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 991px) {
  .articles-content {
    padding: 60px 30px;
  }

  .articles-grid {
    gap: 60px;
  }

  .articles-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 25px;
  }

  .articles-title {
    font-size: 40px;
    margin-bottom: 25px;
  }

  .articles-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .articles-section {
    height: 100vh;
  }

  .articles-content {
    padding: 50px 20px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .articles-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .articles-title {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .articles-text {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .articles-content {
    padding: 40px 15px;
  }

  .articles-grid {
    gap: 40px;
  }

  .articles-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 15px;
  }

  .articles-title {
    font-size: 26px;
    margin-bottom: 15px;
  }

  .articles-text {
    font-size: 14px;
  }
}

