/* ========================================
   INSIGHTS PAGE STYLES
   ======================================== */

/* ========================================
   1. HERO SECTION
   ======================================== */

/* Hero container with background image and overlay */
.insights-hero-redsights {
  background-image: url("../images/redsights-hero-bg.jpg");
  background-size: cover;
  background-position: top center;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0px 20px 60px;
  height: 480px;
  max-height: 480px;
  min-height: 479px;
  width: 100%;
  color: white;
}

/* Dark overlay gradient for better text readability */
.insights-hero-redsights::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    192.42deg,
    rgba(0, 0, 0, 0) -6.55%,
    rgba(0, 0, 0, 0.081) 36.82%,
    rgba(0, 0, 0, 0.9) 77.34%
  );
}

/* Hero content wrapper - centered with max-width */
.hero-content-redsights {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px;
  gap: 23px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Reset margins for hero text elements */
.hero-content-redsights h1,
.hero-content-redsights p {
  margin: 0;
}

/* Main hero heading */
.hero-content-redsights h1 {
  font-size: 60px;
  font-weight: 600;
  line-height: 1.2;
}

/* Red color for "red" in "redsights" */
.hero-content-redsights .red {
  color: #e11b22;
}

/* Hero description text */
.hero-content-redsights p {
  font-size: 20px;
  font-weight: 500;
  max-width: 600px;
  line-height: 1.6;
}

/* Hero Section - Responsive Styles */
/* Extra Large Tablet - 1080px */
@media (max-width: 1080px) {
  .insights-hero-redsights {
    height: 450px;
    min-height: 450px;
    padding: 0px 35px 55px;
  }

  .hero-content-redsights h1 {
    font-size: 54px;
  }

  .hero-content-redsights p {
    font-size: 19px;
  }
}

/* Large Tablet - 1024px */
@media (max-width: 1024px) {
  .insights-hero-redsights {
    height: 400px;
    min-height: 400px;
    padding: 0px 30px 50px;
  }

  .hero-content-redsights h1 {
    font-size: 48px;
  }

  .hero-content-redsights p {
    font-size: 18px;
  }
}

/* Medium Tablet - 940px */
@media (max-width: 940px) {
  .insights-hero-redsights {
    height: 380px;
    min-height: 380px;
    padding: 0px 25px 45px;
  }

  .hero-content-redsights h1 {
    font-size: 44px;
  }

  .hero-content-redsights p {
    font-size: 17px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .insights-hero-redsights {
    height: 350px;
    min-height: 350px;
    padding: 0px 25px 40px;
  }

  .hero-content-redsights h1 {
    font-size: 40px;
  }

  .hero-content-redsights p {
    font-size: 16px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .insights-hero-redsights {
    height: 300px;
    min-height: 300px;
    padding: 0px 20px 0px;
    text-align: center;
    align-items: end;
  }

  .hero-content-redsights {
    align-items: center;
    text-align: center;
  }

  .hero-content-redsights h1 {
    font-size: 32px;
  }

  .hero-content-redsights p {
    font-size: 15px;
  }
}

/* ========================================
   2. FILTER BAR SECTION
   ======================================== */

/* Main container for insights content */
.container-insights-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  min-height: fit-content;
}

/* Container for filter bar */
.container-head01 {
  min-width: auto;
  min-height: fit-content;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Filter bar container - horizontal layout with shadow */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 122px;
  padding: 40px 0px;
  position: relative;
  background-color: white;
  box-shadow: 0px 4px 20px rgba(255, 255, 255, 0.5);
}

/* Filter controls container */
.filter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  max-width: 673px;
  height: 42px;
  flex: 1;
}

/* "FILTER BY" label */
.filter-label {
  color: #7a7373;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0%;
  text-transform: uppercase;
  height: 20px;
  min-width: 80px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Dropdown select styling */
.filter-dropdown {
  padding: 10px;
  border: 1px solid #d3cfcf;
  outline: none;
  box-shadow: none;
  box-sizing: border-box;
  list-style: 1.5em;
  background: #fff;
  color: #3a3535;
  font-size: 16px;
  min-width: 160px;
  min-height: 42px;
  border-radius: 0px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg width='10' height='6' viewBox='0 0 10 6' xmlns='http://www.w3.org/2000/svg'><path d='M1 1l4 4 4-4' stroke='%23333' stroke-width='1' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 40px;
}

/* Dropdown hover and focus states */
.filter-dropdown:hover,
.filter-dropdown:focus {
  border-color: #e11b22;
  outline: none;
}

/* Filter buttons container (search and filter icons) */
.filter-button {
  height: 24px;
  width: auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* Search input container */
.filter-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: width 0.3s ease;
}

/* Search toggle icon */
.search-toggle {
  width: 16px;
  height: 16px;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

/* Search input field - hidden by default */
.filter-search-input {
  width: 200px;
  height: 100%;
  padding: 10px 12px;
  border: 1px solid #d3cfcf;
  border-radius: 4px;
  font-size: 14px;
  outline: none;
  background: #fff;
  color: #3a3535;
  transition: all 0.3s ease;
  margin-left: 8px;
}

.filter-search-input:focus {
  border-color: #e11b22;
}

/* When search is active, hide the icon */
.filter-search.search-active .search-toggle {
  display: none;
}

.filter-search.search-active .filter-search-input {
  display: block;
}

/* Filter icon styling */
.filter-icon {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

/* Button hover effects */
.filter-icon:hover {
  background-color: #f5f5f5;
}

/* Icon sizes within buttons */
.filter-icon img {
  height: 12px;
  width: 15px;
}

/* Filter Bar - Responsive Styles */
/* Extra Large Tablet - 1080px */
@media (max-width: 1080px) {
  .container-insights-main {
    padding: 0 35px;
  }

  .filter-bar {
    padding: 35px 0;
    height: auto;
  }

  .filter {
    gap: 22px;
  }

  .filter-dropdown {
    min-width: 150px;
    font-size: 15px;
  }

  .filter-search-input {
    width: 190px;
  }
}

/* Large Tablet - 1024px */
@media (max-width: 1024px) {
  .container-insights-main {
    padding: 0 30px;
  }

  .filter-bar {
    padding: 30px 0;
    height: auto;
  }

  .filter {
    gap: 20px;
  }

  .filter-dropdown {
    min-width: 140px;
    font-size: 15px;
  }
}

/* Medium Tablet - 940px */
@media (max-width: 940px) {
  .container-insights-main {
    padding: 0 25px;
  }

  .filter-bar {
    padding: 28px 0;
    height: auto;
  }

  .filter {
    gap: 18px;
  }

  .filter-dropdown {
    min-width: 130px;
    font-size: 14px;
  }

  .filter-search-input {
    width: 180px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .container-insights-main {
    padding: 0 20px;
  }

  .filter-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 24px 0;
    gap: 20px;
  }

  .filter {
    flex-direction: column;
    width: 100%;
    gap: 16px;
    align-items: stretch;
    height: auto;
  }

  .filter-label {
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
    min-width: auto;
  }

  .filter-dropdown {
    width: 100%;
    min-width: 0;
  }

  .filter-button {
    justify-content: flex-start;
    margin-top: 8px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .container-insights-main {
    padding: 0 15px;
  }

  .filter-bar {
    padding: 20px 0;
    gap: 16px;
  }

  .filter {
    gap: 12px;
  }

  .filter-label {
    font-size: 13px;
  }

  .filter-dropdown {
    font-size: 14px;
    padding: 8px;
    height: 40px;
  }
}

/* ========================================
   3. CONTENT AREA & ARTICLE CARDS
   ======================================== */

/* Main content area container */
.content-area01 {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 60px 0 0;
}

/* Content column - contains all article cards */
.content-column {
  width: 100%;
  max-width: 880px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  margin: 0 auto;
}

/* Large featured article card (first card) */
.article-card-top {
  width: 100%;
  max-width: 880px;
  height: auto;
  min-height: 420px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  background: #fff;
  overflow: hidden;
}

/* Image container for articles */
.img-block {
  width: 50%;
  height: 420px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Article images */
.img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article content container */
.article-content {
  width: 50%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 230px;
}

/* Article content header section */
.article-content-head {
  display: flex;
  gap: 28px;
  flex-direction: column;
  width: 100%;
  flex: 1;
}

/* Article category/type label */
.article-content-head > span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #e93735;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Article description container */
.article-content-desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Article title */
.article-content-desc span {
  font-size: 20px;
  font-weight: 600;
  color: #272121;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Article title links */
.article-content-desc span a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-content-desc span a:hover {
  color: #e93735;
}

/* Article excerpt */
.article-content-desc p {
  font-size: 16px;
  font-weight: 400;
  color: #3a3535;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Article bottom section with meta info and icon */
.article-content-bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

/* Article meta information (date, category, etc.) */
.article-meta-info {
  display: flex;
  flex-direction: row;
  gap: 8px;
  flex: 1;
}

.article-meta-info span {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: #7a7373;
  letter-spacing: 0.3px;
}

/* Article read more icon */
.article-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.article-icon:hover {
  transform: translateX(3px);
}

.article-icon img {
  width: 20px;
  height: 20px;
}

/* Content Area - Responsive Styles */
/* Extra Large Tablet - 1080px */
@media (max-width: 1080px) {
  .content-area01 {
    flex-direction: column;
    gap: 35px;
    padding-top: 50px 0 0;
  }

  .content-column {
    width: 100%;
    max-width: 100%;
    gap: 55px;
  }

  .article-card-top {
    min-height: 410px;
  }

  .img-block {
    height: 410px;
  }

  .article-content-desc span {
    font-size: 19px;
  }

  .article-content-desc p {
    font-size: 15px;
  }
}

/* Large Tablet - 1024px */
@media (max-width: 1024px) {
  .content-area01 {
    flex-direction: column;
    gap: 30px;
    padding-top: 40px 0 0;
  }

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

/* Medium Tablet - 940px */
@media (max-width: 940px) {
  .content-area01 {
    flex-direction: column;
    gap: 25px;
    padding-top: 35px 0 0;
  }

  .content-column {
    width: 100%;
    max-width: 100%;
    gap: 50px;
  }

  .article-card-top {
    min-height: 400px;
  }

  .img-block {
    height: 400px;
  }

  .article-content-desc span {
    font-size: 18px;
  }

  .article-content-desc p {
    font-size: 15px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .content-area01 {
    flex-direction: column;
    gap: 32px;
    padding-top: 20px 0 0;
  }

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

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .content-column {
    gap: 32px;
  }

  .article-card-top {
    flex-direction: column;
    min-height: auto;
    gap: 0;
  }

  .img-block {
    width: 100%;
    height: 240px;
  }

  .article-content {
    width: 100%;
    min-height: auto;
    padding: 2px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .content-column {
    gap: 24px;
  }

  .article-card-top {
    min-height: 320px;
    height: auto;
  }

  .article-card-top .article-content-head {
    min-height: 80px;
    height: 120px;
    gap: 10px;
  }

  .article-card-top .img-block {
    height: 200px;
  }

  .article-card-top .article-content {
    justify-content: normal;
    padding: 5px;
    gap: 10px;
    min-height: 80px;
    height: auto;
  }

  .article-content-desc span {
    font-size: 16px;
    min-height: 50px;
    height: auto;
  }

  .article-content-desc p {
    font-size: 14px;
    min-height: 0px;
    height: auto;
    display: none;
  }

  .article-content-bottom {
    margin-top: 5px;
  }
}

/* ========================================
   4. DIVIDERS
   ======================================== */

/* Horizontal divider between sections */
.divider {
  width: 100%;
  margin: 0;
  padding: 05px;
  text-align: center;
}

/* Vertical divider between two-column cards */
.divider-2 {
  height: 450px;
  padding: 0px;
  margin: 0px;
  text-align: center;
}

/* SVG divider for mobile */
.divider-3 {
  display: none;
}

/* Dividers - Responsive Styles */
/* Small Tablet - 768px */
@media (max-width: 768px) {
  .divider-2 {
    display: none;
    /* Hide vertical divider on mobile */
  }
}

@media (max-width: 576px) {
  .divider {
    display: none;
  }

  /* Add SVG divider after each article card on mobile */
  .divider-3 {
    display: block !important;
    width: 100%;
    min-height: 5px;
    background-repeat: no-repeat;
    background-position: center;
    margin-bottom: 20px;
    margin-top: 10px;
  }
}

/* ========================================
   5. ARTICLE CARD ROW (Two-column layout)
   ======================================== */

/* Container for two-column article layout */
.article-card-row {
  width: 100%;
  height: auto;
  min-height: 480px;
  display: flex;
  flex-direction: row;
  gap: 40px;
}

/* Individual article card in row */
.article-card-row-item {
  width: 100%;
  max-width: 400px;
  height: auto;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

/* Image block for row items */
.article-card-row-item .img-block {
  width: 100%;
  height: 230px;
  overflow: hidden;
}

.article-card-row-item .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

/* Content area for row items */
.article-card-row-item .article-content {
  width: 100%;
  height: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Category label for row items */
.article-card-row-item .article-content .category {
  color: #e93735;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Title for row items */
.article-card-row-item .article-content .title {
  color: #272121;
  font-size: 20px !important;
  font-weight: 600;
  height: 120px;
  width: 100%;
  line-height: 1.4;
}

/* Bottom section for row items */
.article-card-row-item .article-content .article-content-bottom {
  width: 100%;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.article-card-row-item
  .article-content
  .article-content-bottom
  .article-meta-info {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.article-card-row-item
  .article-content
  .article-content-bottom
  .article-meta-info
  span {
  color: #7a7373;
  font-size: 14px;
}

/* Article Card Row - Responsive Styles */
/* Extra Large Tablet - 1080px */
@media (max-width: 1080px) {
  .article-card-row {
    gap: 38px;
    min-height: 470px;
  }

  .article-card-row-item {
    min-height: 470px;
    gap: 19px;
  }

  .article-card-row-item .img-block {
    height: 225px;
  }

  .article-card-row-item .article-content .title {
    font-size: 19px !important;
    height: 115px;
  }
}

/* Large Tablet - 1024px maintains desktop layout */

/* Medium Tablet - 940px */
@media (max-width: 940px) {
  .article-card-row {
    gap: 35px;
    min-height: 460px;
  }

  .article-card-row-item {
    min-height: 460px;
    gap: 18px;
  }

  .article-card-row-item .img-block {
    height: 220px;
  }

  .article-card-row-item .article-content .title {
    font-size: 18px !important;
    height: 110px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .article-card-row {
    flex-direction: row;
    gap: 30px;
    min-height: auto;
  }

  .article-card-row-item {
    width: 100%;
    max-width: 100%;
    min-height: 450px;
    gap: 0px;
  }

  .article-card-row-item .img-block {
    height: 220px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .article-card-row {
    flex-direction: column;
    gap: 25px;
  }

  .article-card-row-item {
    min-height: 320px;
  }

  .article-card-row-item .img-block {
    height: 200px;
  }

  .article-card-row-item .article-content {
    justify-content: normal;
    gap: 10px;
    min-height: 120px;
  }

  .article-card-row-item .article-content .title {
    font-size: 16px !important;
    min-height: 50px;
    height: auto;
  }

  .article-card-row-item .article-content .article-content-bottom {
    margin-top: 5px;
  }
}

/* ========================================
   6. ARTICLE CARD GRID (Responsive Flexbox Layout)
   ======================================== */

/* Container for responsive article grid */
.article-card-grid-second {
  width: 100%;
  max-width: 880px;
  height: 480px;
  min-height: 480px;
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: nowrap;
}

/* Individual grid item */
.article-card-grid-item {
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

/* Image block for grid items */
.article-card-grid-item .img-block {
  width: 100%;
  height: 230px;
  max-height: 230px;
  overflow: hidden;
}

.article-card-grid-item .img-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Content area for grid items */
.article-card-grid-item .article-content {
  width: 100%;
  height: 230px;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Category for grid items */
.article-card-grid-item .article-content .category {
  color: #e93735;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Title for grid items */
.article-card-grid-item .article-content .title {
  color: #272121;
  font-size: 20px;
  font-weight: 600;
  width: 100%;
  height: 120px;
  line-height: 1.4;
}

/* Bottom section for grid items */
.article-card-grid-item .article-content .article-content-bottom {
  width: 100%;
  height: 24px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: none;
}

/* Article Card Grid - Responsive Styles */
/* Extra Large Tablet - 1080px - maintains 3 columns */
@media (max-width: 1080px) {
  .article-card-grid-second {
    gap: 22px;
    min-height: 470px;
  }

  .article-card-grid-item {
    gap: 10px;
  }

  .article-card-grid-item .img-block {
    height: 225px;
  }

  .article-card-grid-item .article-content {
    height: 225px;
    min-height: 225px;
    gap: 28px;
  }

  .article-card-grid-item .article-content .title {
    font-size: 19px;
    height: 115px;
  }
}

/* Large Tablet - 1024px - 2 columns */
@media (max-width: 1024px) {
  /* Hide 3rd post and beyond */
  .article-card-grid-second
    .article-card-grid-item:nth-child(n + 7):not(.slip) {
    display: none;
  }

  /* Hide dividers after the first one */
  .article-card-grid-second .divider-2:nth-child(4),
  .article-card-grid-second .divider-2:nth-child(n + 5) {
    display: none;
  }

  /* Hide extra divider-3 elements */
  .article-card-grid-second .divider-3:nth-child(5),
  .article-card-grid-second .divider-3:nth-child(n + 6) {
    display: none;
  }

  /* For sections with slip: hide 2nd post and its dividers, keep first divider-2 */
  .article-card-grid-second:has(.slip) .article-card-grid-item:nth-child(4),
  .article-card-grid-second:has(.slip) .divider-3:nth-child(3),
  .article-card-grid-second:has(.slip) .divider-2:nth-child(5) {
    display: none;
  }
}

/* Medium Tablet - 940px - 2 columns */
@media (max-width: 940px) {
  .article-card-grid-second {
    gap: 35px;
    min-height: 460px;
  }

  .article-card-grid-item {
    gap: 5px;
  }

  .article-card-grid-item .img-block {
    height: 210px;
  }

  .article-card-grid-item .article-content {
    height: 220px;
    min-height: 220px;
    gap: 25px;
  }

  .article-card-grid-item .article-content .title {
    font-size: 18px;
    height: 110px;
  }
}

/* Small Tablet - 768px - 2 columns */
@media (max-width: 768px) {
  .article-card-grid-second {
    gap: 30px;
    height: auto;
    min-height: auto;
  }

  .article-card-grid-item {
    gap: 4px;
  }

  .article-card-grid-item .img-block {
    height: 220px;
  }

  .article-card-grid-item .article-content {
    height: auto;
    min-height: 180px;
  }
}

/* Mobile - 576px - 1 column */
@media (max-width: 576px) {
  .article-card-grid-second {
    flex-direction: column;
    gap: 25px;
  }

  .article-card-grid-second
    .article-card-grid-item:nth-child(n + 3):not(.slip) {
    display: flex;
  }

  .article-card-grid-second .divider-2 {
    display: none;
  }

  .article-card-grid-second .article-card-grid-item {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 320px;
    height: auto;
  }

  .article-card-grid-item .article-content {
    height: auto;
    min-height: fit-content;
    justify-content: normal;
    gap: 10px;
  }

  .article-card-grid-item .img-block {
    height: 200px;
  }

  .article-card-grid-item .article-content .title {
    font-size: 17px;
    min-height: 50px;
    height: auto;
  }
}

/* ========================================
   7. EVENT CTA SECTION
   ======================================== */

/* Event call-to-action banner with background image */
.event-cta {
  width: 100%;
  max-width: 880px;
  min-height: 186px;
  padding: 40px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-image: url("../images/banner-ad-bg-1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin: 20px 0;
}

/* Text content for event CTA */
.event-cta .event-text {
  width: 100%;
  max-width: 490px;
  min-height: 83px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Event CTA heading */
.event-cta .event-text .heading {
  width: 100%;
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

/* Event CTA description */
.event-cta .event-text .description {
  width: 100%;
  color: #ffffff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

/* Event CTA button container */
.event-btn {
  width: auto;
  min-width: 165px;
  height: auto;
  flex-shrink: 0;
  background-color: #e93735;
}

/* Event CTA button styling */
.event-cta .event-btn button {
  padding: 10px 40px;
  color: #ffffff;
  background-color: #e11b22;
  border-radius: 0px !important;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  outline: none;
}

.event-cta .event-btn button:hover {
  background-color: #c81a1f;
  color: #ffffff;
}

/* Event CTA - Responsive Styles */
/* Extra Large Tablet - 1080px */
@media (max-width: 1080px) {
  .event-cta {
    padding: 38px;
    min-height: 180px;
  }

  .event-cta .event-text {
    max-width: 470px;
  }

  .event-cta .event-text .heading {
    font-size: 27px;
  }

  .event-cta .event-text .description {
    font-size: 23px;
  }

  .event-btn {
    min-width: 160px;
  }

  .event-cta .event-btn button {
    padding: 9px 38px;
    font-size: 15px;
  }
}

/* Large Tablet - 1024px maintains desktop layout */

/* Medium Tablet - 940px */
@media (max-width: 940px) {
  .event-cta {
    padding: 35px;
    min-height: 170px;
  }

  .event-cta .event-text {
    max-width: 450px;
  }

  .event-cta .event-text .heading {
    font-size: 26px;
  }

  .event-cta .event-text .description {
    font-size: 22px;
  }

  .event-btn {
    min-width: 150px;
  }

  .event-cta .event-btn button {
    padding: 8px 35px;
    font-size: 15px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .event-cta {
    flex-direction: column;
    padding: 30px;
    text-align: center;
    gap: 25px;
  }

  .event-cta .event-text {
    max-width: 100%;
  }

  .event-cta .event-text .heading {
    font-size: 24px;
  }

  .event-cta .event-text .description {
    font-size: 20px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .event-cta {
    padding: 30px 20px;
    gap: 20px;
  }

  .event-cta .event-text .heading {
    font-size: 22px;
  }

  .event-cta .event-text .description {
    font-size: 18px;
  }
}

/* ========================================
   8. SLIP COLUMN (Sidebar content)
   ======================================== */

/* Slip column container */
.slip {
  padding: 40px 20px;
  background-color: #f6f6f6;
  width: 256px;
  height: 480px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: space-between;
}

/* Slip content area */
.slip-content {
  width: 216px;
  height: 208px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Slip heading */
.slip-content .head {
  width: 100%;
  height: 102px;
  color: #272121;
  font-size: 28px;
  font-weight: 600;
  line-height: 121%;
}

/* Slip description */
.slip-content .desc {
  width: 100%;
  height: 90px;
  color: #3a3535;
  font-size: 20px;
  font-weight: 400;
}

/* Slip button container */
.slip-cta .btn {
  width: 112px;
  height: 42px;
  display: flex;
  justify-content: start;
  align-items: center;
}

/* Slip button styling */
.slip-cta .btn button {
  width: 100%;
  height: 100%;
  padding: 10px 0px;
  color: red;
  background-color: transparent;
  border-radius: 0px;
  border: none;
  font-size: 14px;
  font-weight: 600;
}

.slip-cta .btn button:hover {
  background-color: transparent;
  border-radius: 0px;
  color: red;
  border: none;
}

/* Slip button icon */
.slip-cta .btn button img {
  transition: all 0.2s ease-in;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  transform: translateY(3px);
}

.slip-cta .btn:hover button img {
  transform: translateX(4px);
}

/* Slip Column - Responsive Styles */
/* Keep desktop layout at 1024px */

/* ========================================
   9. SEARCH CONTAINER
   ======================================== */

/* Search form container */
.specific-search-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  background-color: #f6f6f6;
  padding: 32px 24px;
  box-sizing: border-box;
  position: relative;
  margin: 20px 0;
}

/* Search heading */
.specific-search-container h3 {
  margin: 0;
  width: 300px;
  font-size: 24px;
  font-weight: 600;
  color: #272121;
}

/* Search form wrapper */
.specific-search-container .search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 324px;
  gap: 0;
}

/* Search input field */
.specific-search-container .search-field {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0px;
  font-size: 16px;
  outline: none;
}

/* Search icon button */
.search-icon-img-btn {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 10px;
  border: none;
  background-color: transparent;
}
/* Subscription CTA */
.subscription-cta {
  width: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #f6f6f6;
}
/* Search Container - Responsive Styles */
/* Extra Large Tablet - 1080px */
@media (max-width: 1080px) {
  .specific-search-container {
    padding: 30px 26px;
    gap: 19px;
  }

  .specific-search-container h3 {
    font-size: 23px;
    width: 290px;
  }

  .specific-search-container .search-form {
    width: 310px;
  }

  .specific-search-container .search-field {
    font-size: 15px;
  }
}

/* Medium Tablet - 940px */
@media (max-width: 940px) {
  .specific-search-container {
    padding: 30px 22px;
    gap: 18px;
  }

  .specific-search-container h3 {
    font-size: 22px;
    width: 280px;
  }

  .specific-search-container .search-form {
    width: 300px;
  }

  .specific-search-container .search-field {
    font-size: 15px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .specific-search-container {
    flex-direction: row;
    padding: 30px 20px;
    gap: 20px;
  }

  .specific-search-container h3 {
    font-size: 20px;
  }

  .specific-search-container .search-form {
    max-width: 400px;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .specific-search-container {
    padding: 15px;
    gap: 18px;
  }

  .specific-search-container h3 {
    font-size: 18px;
  }

  .specific-search-container .search-form {
    flex-direction: column;
    gap: 15px;
    width: 100%;
  }

  .specific-search-container .search-field {
    width: 100%;
    max-width: 100%;
    padding: 12px;
  }

  .specific-search-container .search-icon-img-btn {
    top: 12px;
  }
}

/* ========================================
   10. REPORT COLUMN (Sidebar)
   ======================================== */

/* Report wrapper container - default static position */
.report-wrapper {
  width: 360px;
  height: fit-content;
  position: static;
  transition: position 0.3s ease;
}

/* Report wrapper - sticky state when scrolling */
.report-wrapper.sticky-active {
  position: sticky;
  top: 150px;
}

/* Report column - always static inside wrapper */
.report-column {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: white;
}

/* Report section label */
.report-label {
  text-transform: uppercase;
}

.report-label span {
  width: 360px;
  height: 21px;
  color: #272121;
  font-size: 14px;
  font-weight: 700;
}

.report-label img {
  width: 360px;
}

/* Report list container */
.report-lists-area {
  height: fit-content;
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

/* Individual report list item */
.report-list-item {
  width: 360px;
  height: 85px;
  display: flex;
  flex-direction: row;
  gap: 18px;
}

@media (max-height: 700px) {
  .report-list-item:last-child {
    display: none;
  }
}

.report-list-item img {
  width: 110px;
  height: 64px;
  object-fit: cover;
}

/* Report item content */
.report-list-content {
  width: 222px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2px;
}

.report-list-content h3 {
  width: 100%;
  height: 21px;
  color: #e93735 !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
}

.report-list-content p {
  height: 60px;
  color: #272121;
  font-size: 14px;
  font-weight: 700;
}

/* Report CTA section */
.report-cta {
  width: 360px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Email subscription form */
.report-email {
  width: 360px;
  min-height: 240px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: #f6f6f6;
}

/* Email Main heading */
.report-cta .report-email h3 {
  width: 100%;
  min-height: 27px;
  color: #272121;
  font-size: 20px;
  font-weight: 600;
}

/* Email input container */
.email-input {
  width: 320px;
  display: flex;
  gap: 20px;
  flex-direction: column;
}

/* contact form alignment */
.report-cta .simple-email-form {
  flex-wrap: wrap;
}

/* Email input field */
.email-input input {
  width: 240px !important;
  height: 48px;
  padding: 14px;
  border: 1px solid #d3cfcf;
  background: #fff;
  color: #3a3535;
  font-size: 16px;
  border-radius: 0px;
}

/* Email submit button */
.report-email button {
  width: 131px;
  height: 48px;
  background-color: #e93735 !important;
  color: white;
  padding: 13px 40px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 0px;
  cursor: pointer;
}

/* Social media icons section */
.report-social-icons {
  width: 200px;
  height: 78px;
  display: flex;
  flex-direction: column;
}

.report-social-icons h3 {
  width: 100%;
  height: 27px;
  color: #272121;
  font-size: 18px;
  font-weight: 400;
}

/* Social icons container */
.social-icons {
  width: 200px;
  height: 26px;
  display: flex;
  flex-direction: row;
  gap: 32px;
}

.social-icons img {
  width: 26px;
  height: 26px;
}

/* Report Column - Responsive Styles */
/* Extra Large Tablet - 1080px */
@media (max-width: 1080px) {
  .report-wrapper {
    width: 350px;
  }

  .report-column {
    width: 350px;
    gap: 38px;
  }

  .report-label {
    width: 350px;
  }

  .report-label span {
    width: 350px;
  }

  .report-label img {
    width: 350px;
  }

  .report-lists-area {
    width: 350px;
    gap: 55px;
  }

  .report-list-item {
    width: 350px;
    height: 82px;
  }

  .report-list-item img {
    width: 105px;
    height: 62px;
  }

  .report-list-content {
    width: 225px;
  }

  .report-cta {
    width: 350px;
  }

  .report-email {
    width: 350px;
    padding: 23px 19px;
  }

  .email-input {
    width: 310px;
  }

  .email-input input {
    width: 310px;
  }
}

/* Medium Tablet - 940px */
@media (max-width: 940px) {
  .report-wrapper {
    width: 340px;
  }

  .report-column {
    width: 340px;
    gap: 35px;
  }

  .report-label {
    width: 340px;
  }

  .report-label span {
    width: 340px;
  }

  .report-label img {
    width: 340px;
  }

  .report-lists-area {
    width: 340px;
    gap: 50px;
  }

  .report-list-item {
    width: 340px;
    height: 80px;
  }

  .report-list-item img {
    width: 100px;
    height: 60px;
  }

  .report-list-content {
    width: 220px;
  }

  .report-cta {
    width: 340px;
  }

  .report-email {
    width: 340px;
    padding: 22px 18px;
  }

  .email-input {
    width: 300px;
  }

  .email-input input {
    width: 300px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .report-wrapper {
    width: 100%;
  }

  .report-column {
    width: 100%;
    position: static;
    padding: 32px 24px;
  }
}

/* Small Tablet - 768px */
@media (max-width: 768px) {
  .report-column {
    padding: 24px 16px;
    gap: 32px;
  }

  .report-list-item {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }

  .report-list-item img {
    width: 100%;
    height: auto;
    max-height: 180px;
  }

  .report-list-content {
    width: 100%;
  }

  .report-email {
    padding: 20px 16px;
  }

  .report-email button {
    width: 100%;
  }
}

/* Mobile - 576px */
@media (max-width: 576px) {
  .report-column {
    padding: 20px 12px;
    gap: 24px;
  }

  .report-list-item {
    gap: 10px;
  }

  .report-list-item img {
    max-height: 150px;
  }

  .report-list-content h3 {
    font-size: 13px;
  }

  .report-list-content p {
    font-size: 13px;
  }

  .report-email {
    padding: 16px 12px;
  }

  .email-input input {
    height: 44px;
    font-size: 14px;
    padding: 12px;
  }

  .report-email button {
    height: 44px;
    font-size: 15px;
  }
}

/* ========================================
   END OF INSIGHTS PAGE STYLES
   ======================================== */
