/*- Reset & Base Styles:
  - Applies box-sizing, font-family (Inter), background-color, disables horizontal scroll.
  - Universal box-sizing via *, *:before, *:after.
  - Selection color customized, legacy vendor selection prefixes included (for older browsers).
- News Section:
  - .news-section/.news-container: Main wrapper, flex layout, responsive padding, max-width.
  - .featured-news: Left column, fixed width, relative.
  - .featured-image-wrapper: Large image box, top margin to accommodate navbar, overflow hidden.
  - .featured-title: Large, bold, black heading, word-wrap for overflow.
  - .featured-read-more: Flex row for "Read More" link, includes icon, styled gray.
  - .recent-news: Right column, fixed width.
  - .recent-heading: Bold heading, large font, top margin to align with image.
  - .news-item: Flex row, image wrapper and content.
  - .news-item-image-wrapper: Fixed size thumbnails, flex-shrink prevents shrinking.
  - .news-item-title: Bold, black, line height for readability, responsive min-heights for various children.
  - .news-item-read-more: Flex for icon, styled gray.
- Latest News Section:
  - .latest-news-section: Black background, full width.
  - .latest-news-container: Max width, bottom padding.
  - .latest-news-heading: Georgia italic, white, top margin, bottom margin for spacing.
  - .latest-news-divider: Yellow horizontal divider, margin spacing.
  - .latest-news-cards: Flex, wrap, gap, top margin.
  - .news-card: Black card, border-radius, min-height, flex column.
  - .news-card-image-wrapper: Image area, rounded, overflow hidden.
  - .news-card-title/.news-card-description: White, bold, padding, responsive min-heights.
  - .news-card-read-more: Flex row, "Read More" with icon, gray color, padding on top for spacing.
- Business Solutions Section:
  - .business-solutions-section: Light background, relative, overflow hidden.
  - .business-solutions-container: Flex row, space-between, max-width, responsive padding.
  - .vector-container: Absolute positioning, behind content, pointer-events none.
  - .business-solutions-content: Fixed width, top padding.
  - .business-solutions-heading: Bold, large font, word-wrap for long headings.
  - .business-solutions-paragraph: Gray text, line height, responsive word-wrap.
  - .business-solutions-image-wrapper: Large right image, margin for spacing.
  - .storage-vector-container: Absolute positioning for decorative vector.
- Responsiveness:
  - 1600px: Shrinks widths, image wrappers, increases gap.
  - 1200px: Switches main containers to column, adjusts image sizes, disables vector background.
  - 992px: News cards become 50% width.
  - 768px: News items/containers stack, font sizes shrink, card widths 100%, disables storage vector.
  - 576px/480px/360px: Font sizes, line heights, and spacings shrink further for mobile and small devices.
- No changes to any class or property; only inline profiling in comments.*/
/* Reset and Base Styles */
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter";
  background-color: #f6f6f6;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Selection styles */
::selection {
  background: #ff0000;
  color: #000000;
}
::-webkit-selection {
  background: #ff0000;
  color: #000000;
}
::-moz-selection {
  background: #ff0000;
  color: #000000;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* News Section */
.news-section {
  background-color: #f6f6f6;
  padding: 0;
  width: 100%;
  /*margin-top: 80px;*/
}

.news-container {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 20px;
}

/* Featured News (Left Side) */
.featured-news {
  width: 767px;
  position: relative;
}

.featured-image-wrapper {
  width: 860px;
  height: 586px;
  margin-top: 191px;
  margin-left: 0;
  overflow: hidden;
  padding-right: 60px;
}

.featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-title {
  width: 767px;
  height: auto;
  min-height: 38px;
  margin-top: 40px;
  font-weight: 600;
  font-size: 28px;
  line-height: 38px;
  letter-spacing: 0;
  color: #000000;
  word-wrap: break-word;
}

.featured-read-more {
  display: flex;
  align-items: center;
  width: 280px;
  height: 34px;
  margin-top: 24px;
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0;
  color: #939393;
  text-decoration: none;
}

.featured-read-more i {
  margin-left: 10px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #939393;
}

/* Recent News (Right Side) */
.recent-news {
  width: 630px;
}

.recent-heading {
  width: 182px;
  height: 36px;
  margin-top: 191px;
  font-weight: 600;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
}

.news-item {
  display: flex;
  margin-top: 37px;
}

.news-item-image-wrapper {
  width: 185px;
  height: 173px;
  overflow: hidden;
  flex-shrink: 0;
}

.news-item:nth-child(3) .news-item-image-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.news-item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-item-content {
  margin-left: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(100% - 225px);
}

.news-item-title {
  width: 100%;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: #000000;
  margin: 9px 0 0 0;
  word-wrap: break-word;
}

.news-item:nth-child(2) .news-item-title {
  height: auto;
  min-height: 64px;
}

.news-item:nth-child(3) .news-item-title,
.news-item:nth-child(4) .news-item-title {
  height: auto;
  min-height: 64px;
}

.news-item-read-more {
  display: flex;
  align-items: center;
  width: 280px;
  height: 34px;
  font-weight: 600;
  font-size: 22px;
  line-height: 34px;
  letter-spacing: 0;
  color: #939393;
  text-decoration: none;
  margin-top: 25px;
}

.news-item-read-more i {
  margin-left: 10px;
  color: #939393;
}

/* Latest News Section */
.latest-news-section {
  background-color: #000000;
  padding: 0;
  width: 100%;
}

.latest-news-container {
  max-width: 1540px;
  margin: 0 auto;
  padding: 0px 20px;
  padding-bottom: 50px;
}

/* Heading */
.latest-news-heading {
  width: 215px;
  height: 30px;
  margin-top: 100px;
  padding-top: 70px;
  margin-left: 0;
  font-family: "Georgia";
  font-weight: 400;
  font-style: italic;
  font-size: 26px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  margin-bottom: 40px;
}

/* Divider */
.latest-news-divider {
  width: 100%;
  max-width: 1543px;
  height: 1px;
  margin-top: 0;
  margin-bottom: 60px;
  background-color: #ff0000;
  border: none;
}

/* Cards Container */
.latest-news-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 38px;
  gap: 30px;
}

/* Individual Card */
.news-card {
  width: calc(33.33% - 20px); /* Default for 3 columns (2 gaps * 30px / 3 items = 20px per item) */
  height: auto;
  min-height: 597px;
  border-radius: 8px;
  background-color: #000000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Card Image */
.news-card-image-wrapper {
  width: 100%;
  height: 373px;
  border-radius: 8px;
  overflow: hidden;
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* Card Content */
.news-card-content {
  padding: 28px 15px 20px 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Card Title */
.news-card-title {
  width: 100%;
  height: auto;
  min-height: 58px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
  word-wrap: break-word;
}

/* Card Description */
.news-card-description {
  width: 100%;
  height: auto;
  min-height: 120px;
  margin-top: 18px;
  font-family: "Inter";
  font-weight: 400;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.8);
  word-wrap: break-word;
}

/* Read More Link */
.news-card-read-more {
  display: flex;
  align-items: center;
  width: 200px;
  height: 20px;
  margin-top: 34px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 22px;
  line-height: 100%;
  letter-spacing: 0;
  color: #939393;
  text-decoration: none;
  margin-top: auto;
  padding-top: 15px;
}

.news-card-read-more i {
  margin-left: 22px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #939393;
}

/* Business Solutions Section */
.business-solutions-section {
  background-color: #f6f6f6;
  padding: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.business-solutions-container {
  max-width: 1540px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Vector styling */
.vector-container {
  position: absolute;
  width: 2003px;
  height: 558px;
  top: 372px;
  left: -83px;
  z-index: 1;
  pointer-events: none;
}

.vector-line {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #00000026;
}

/* Content styling */
.business-solutions-content {
  width: 593px;
  padding-top: 68px;
}

.business-solutions-heading {
  width: 100%;
  height: auto;
  min-height: 96px;
  margin-top: 30px;
  font-family: "Inter";
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0;
  color: #000000;
  word-wrap: break-word;
}

.business-solutions-paragraph {
  font-family: "Inter";
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: 0;
  color: rgba(0, 0, 0, 0.8);
  word-wrap: break-word;
}

.first-paragraph {
  width: 100%;
  height: auto;
  min-height: 128px;
  margin-top: 45px;
}

.second-paragraph {
  width: 100%;
  height: auto;
  min-height: 128px;
  margin-top: 58px;
}

/* Image styling */
.business-solutions-image-wrapper {
  width: 860px;
  height: 586px;
  margin-top: 100px;
  margin-bottom: 200px;
  overflow: hidden;
}

.business-solutions-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.storage-vector-container {
  position: absolute;
  width: 2087px;
  height: 571px;
  top: calc(2398px - 2107px);
  left: -240px;
  z-index: 1;
}

.storage-vector {
  width: 100%;
  height: 100%;
  border-width: 1.5px;
  border-radius: 50px;
}

/* ========== RESPONSIVE STYLES ========== */
@media only screen and (max-width: 1600px) {
  .news-container {
    max-width: 1200px;
  }
  .featured-news {
    width: 600px;
  }
  .featured-image-wrapper {
    width: 600px;
    height: 450px;
    margin-top: 100px;
  }
  .featured-title {
    width: 100%;
  }
  .recent-news {
    width: 500px;
  }
  .news-item-title {
    width: 100%;
  }
  .latest-news-container {
    max-width: 1200px;
  }
  /* Removed justify-content: center; to maintain space-between for 3-column layout */
  .latest-news-cards {
    gap: 30px; /* Ensure consistent gap */
  }
  .business-solutions-container {
    max-width: 1200px;
  }
  .business-solutions-image-wrapper {
    width: 600px;
    height: 450px;
  }
}

@media only screen and (max-width: 1200px) {
  /* This breakpoint will now handle 2 cards per row for tablets */
  .news-card {
    width: calc(50% - 15px); /* 2 columns (1 gap * 30px / 2 items = 15px per item) */
  }
  .latest-news-cards {
    justify-content: center; /* Center cards when there are 2 or 1 */
  }

  .news-container {
    flex-direction: column;
    max-width: 90%;
  }
  .featured-news,
  .recent-news {
    width: 100%;
  }
  .featured-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 860 / 586;
    margin-top: 50px;
    padding-right: 0;
  }
  .featured-title {
    width: 100%;
    height: auto;
    margin-top: 20px;
  }
  .recent-heading {
    margin-top: 50px;
  }
  .news-item-content {
    width: calc(100% - 225px);
  }
  .news-item-title {
    width: 100%;
  }
  .latest-news-heading {
    margin-top: 80px;
  }
  .latest-news-cards {
    margin-top: 60px;
  }
  .business-solutions-container {
    flex-direction: column;
    align-items: center;
    max-width: 90%;
  }
  .business-solutions-content {
    width: 100%;
    max-width: 593px;
    text-align: center;
    padding-top: 50px;
  }
  .business-solutions-heading {
    width: 100%;
    height: auto;
  }
  .first-paragraph,
  .second-paragraph {
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .business-solutions-image-wrapper {
    width: 100%;
    max-width: 860px;
    height: auto;
    aspect-ratio: 860 / 586;
    margin-top: 40px;
    margin-bottom: 40px;
  }
  .vector-container {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .news-section {
    margin-top: 60px;
  }
  .news-item {
    flex-direction: column;
    margin-top: 30px;
  }
  .news-item-image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 185 / 173;
  }
  .news-item-content {
    width: 100%;
    margin-left: 0;
    margin-top: 15px;
  }
  .news-item-title {
    margin-top: 0;
    font-size: 22px;
    line-height: 30px;
    height: auto !important;
  }
  .news-item-read-more {
    margin-top: 15px;
  }
  .latest-news-heading {
    width: 100%;
    text-align: center;
  }
  .news-card {
    width: 100%; /* 1 column */
    /* Removed max-width: 445px; to allow full width */
    height: auto;
  }
  .news-card-image-wrapper {
    height: auto;
    aspect-ratio: 445 / 373;
  }
  .news-card-content {
    padding: 20px 15px;
  }
  .news-card-title,
  .news-card-description {
    width: 100%;
    height: auto;
  }
  .news-card-description {
    margin-top: 15px;
    line-height: 1.4;
  }
  .news-card-read-more {
    margin-top: 20px;
  }
  .business-solutions-heading {
    font-size: 32px;
  }
  .business-solutions-paragraph {
    font-size: 20px;
    line-height: 28px;
  }
  .storage-vector-container {
    width: 100%;
    left: 0;
    top: 300px;
  }
}

@media only screen and (max-width: 576px) {
  .news-section {
    margin-top: 50px;
  }
  .featured-image-wrapper {
    margin-top: 30px;
  }
  .featured-title {
    font-size: 24px;
    line-height: 32px;
    height: auto;
    word-break: break-word;
  }
  .news-item-title {
    font-size: 20px;
    line-height: 28px;
    word-break: break-word;
  }
  .featured-read-more,
  .news-item-read-more {
    font-size: 18px;
    line-height: 28px;
    width: auto;
    max-width: 280px;
  }
}

@media only screen and (max-width: 480px) {
  .featured-title {
    font-size: 22px;
    line-height: 30px;
  }
  .news-item-title {
    font-size: 20px;
    line-height: 28px;
  }
  .featured-read-more,
  .news-item-read-more {
    font-size: 16px;
    line-height: 24px;
  }
  .latest-news-heading {
    font-size: 22px;
  }
  .news-card-title {
    font-size: 20px;
    line-height: 1.3;
  }
  .news-card-description {
    font-size: 16px;
    line-height: 1.4;
  }
  .news-card-read-more {
    font-size: 16px;
  }
  .business-solutions-heading {
    font-size: 24px;
    line-height: 1.3;
  }
  .business-solutions-paragraph {
    font-size: 16px;
    line-height: 24px;
  }
  .storage-vector-container {
    display: none;
  }
}

@media only screen and (max-width: 360px) {
  .featured-title,
  .news-item-title {
    font-size: 18px;
    line-height: 26px;
    word-break: break-word;
  }
  .featured-read-more,
  .news-item-read-more {
    font-size: 15px;
    line-height: 22px;
  }
  .news-card-title {
    font-size: 18px;
    line-height: 1.3;
  }
  .news-card-description {
    font-size: 15px;
    line-height: 1.4;
  }
  .news-card-read-more {
    font-size: 15px;
  }
  .business-solutions-heading {
    font-size: 22px;
    line-height: 1.3;
  }
  .business-solutions-paragraph {
    font-size: 15px;
    line-height: 22px;
  }
} /* ========== END OF FILE ========== */

@media (min-width:820px) and (max-width:1280px){
  .news-section {
    background-color: #f6f6f6;
    padding: 0;
    width: 100%;
   margin-top: 80px;
}
}

@media (width:1280px){
  .recent-heading {
    margin-top: 95px;
  }
}