/* =============================================
   OM ENERGY — INSIGHTS
   ============================================= */

:root {
  --color-accent: #ff5c00;
  --color-accent-dark: #cc4900;
  --color-accent-light: #ff7a2e;
}

/* =============================================
   WRAPPER
   ============================================= */

.page-wrapper {
  max-width: 100%;
  width: 100%;
  margin: 0;
  background: #111111;
}

/* =============================================
   NAVBAR
   ============================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  padding: 12px 24px;
  background: transparent;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  width: 100px;
  height: 80px;
  background-image: url("../assets/images/logos/logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.navbar__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px 18px;
}

.navbar__link {
  height: 10px;
  border-radius: 2px;
  color: #ffffff;
}

.navbar__link--active {
  color: #ff5c00;
}

.navbar__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 12px;
  border: none;
  background-color: #ff5c00;
  padding: 8px 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.navbar__cta:hover {
  background-color: #ffffff;
  color: #000000;
}

.navbar__item {
  position: relative;
}

.navbar__hamburger {
  display: none;
}

/* DROPDOWN — desktop */
.navbar__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: max-content;
  min-width: 280px;
  background: rgba(20, 20, 20, 0.97);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 9999;
}

.navbar__dropdown--active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown--vertical {
  flex-direction: column;
  align-items: stretch;
  min-width: 240px;
  padding: 8px 0;
}

.navbar__dropdown-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-decoration: none;
  transition: background 0.15s ease;
}

.navbar__dropdown-row:hover {
  background: rgba(255, 255, 255, 0.06);
}

.navbar__dropdown-label {
  font-size: 13px;
  color: #eeeeee;
  white-space: nowrap;
}

.navbar__dropdown-arrow {
  color: #eeeeee;
  opacity: 0.5;
  font-size: 13px;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: end;
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/insights-images/hero-insight.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-left: 40px;
  padding-right: 40px;
  padding-bottom: 100px;
}

.hero__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.hero__title {
  width: 50%;
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.2;
}

.hero__right {
  height: auto;
  width: 500px;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.hero__sub {
  width: 100%;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 12px;
}

.hero__cta {
  height: auto;
  width: auto;
  color: #ffffff;
  font-size: 12px;
  border: none;
  background-color: #ff5c00;
  padding: 8px 16px;
  transition: all 0.2s ease;
  text-decoration: none;
}

.hero__cta:hover {
  background-color: #ffffff;
  color: #000000;
}

/* =============================================
   FEATURED ARTICLE
   ============================================= */

.featured {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 100px 40px;
  gap: 100px;
  background-color: #1a1a1a;
}

.featured__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.featured__title {
  width: 30%;
  font-size: 48px;
  color: #ffffff;
}

.featured__subtitle {
  width: 50%;
  font-size: 24px;
  color: #aaaaaa;
}

.featured__img {
  height: fit-content;
  width: 100%;
}

/* =============================================
   ARTICLE GRID
   ============================================= */

.articles-row {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 60px;
  background-color: #111111;
}

.article__card {
  height: 400px;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-direction: column;
  gap: 48px;
  padding: 16px;
  background-color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.article-card__top {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.article-card-body__tag {
  font-size: 14px;
  color: #ff5c00;
  padding: 6px 12px;
  border-radius: 25px;
  border: 1px solid #ff5c00;
}

.article-card__title {
  font-size: 24px;
  color: #ffffff;
  width: 100%;
}

.article-card__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.article-card__text {
  font-size: 16px;
  color: #aaaaaa;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.article__date-info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article__date {
  font-size: 14px;
  color: #666666;
}

.article__kind {
  font-size: 14px;
  color: #666666;
}

/* =============================================
   THOUGHT LEADERSHIP
   ============================================= */

.thought-leadership {
  padding: 100px 40px;
  background: #141414;
}

.thought-leadership__header {
  max-width: 900px;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  font-size: 14px;
  color: #ff5c00;
  padding: 6px 12px;
  border-radius: 25px;
  border: 1px solid #ff5c00;
  margin-bottom: 16px;
}

.thought-leadership__header h2 {
  color: #fff;
  font-size: 48px;
  margin: 16px 0;
}

.thought-leadership__header p {
  color: #aaa;
  line-height: 1.8;
}

.thought-leadership__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.thought-card {
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
}

.thought-card h3 {
  color: #fff;
  margin-bottom: 14px;
}

.thought-card p {
  color: #aaa;
  line-height: 1.7;
}

/* =============================================
   DOWNLOADABLE REPORTS
   ============================================= */

.reports {
  width: 100%;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 100px 40px;
  background-color: #141414;
  gap: 48px;
}

.reports__info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.reports__title {
  font-size: 48px;
  color: #ffffff;
}

.reports__subtitle {
  font-size: 24px;
  color: #aaaaaa;
}

.reports__content {
  width: 100%;
  display: flex;
  gap: 24px;
}

.reports__card {
  height: 300px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  transition: border-color 0.2s ease;
}

.reports__card:hover {
  border-color: rgba(255, 92, 0, 0.4);
  cursor: pointer;
}

.reports__card-info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.reports__icon {
  width: 48px;
  opacity: 0.7;
}

.card__title {
  font-size: 24px;
  color: #ffffff;
}

.card__subtitle {
  font-size: 16px;
  color: #aaaaaa;
}

/* =============================================
   NEWSLETTER / SUBSCRIBE
   ============================================= */

.cta-banner {
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  background-color: #141414;
}

.cta__title {
  width: 40%;
  font-size: 48px;
  color: #ffffff;
  text-align: center;
}

.cta__subtitle {
  width: 50%;
  font-size: 24px;
  color: #aaaaaa;
  text-align: center;
}

.ctas {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cta__1 {
  font-size: 16px;
  color: #ffffff;
  padding: 8px 16px;
  background-color: #ff5c00;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta__1:hover {
  background-color: #ffffff;
  color: #000000;
}

.cta__2 {
  font-size: 16px;
  color: #ffffff;
  padding: 8px 16px;
  background-color: #cc4900;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
}

.cta__2:hover {
  background-color: #ffffff;
  color: #000000;
}

/* =============================================
   FOOTER SPLIT
   ============================================= */

.footer-split {
  height: 700px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-split__left {
  height: 100%;
  width: auto;
  background-color: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 40px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}

.footer-split__right {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: flex-start;
  position: relative;
  background-image: url("../assets/images/footer/footer-image.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding-bottom: 24px;
  padding-left: 40px;
}

.footer__info {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}

.footer-split__cta-title {
  font-size: 48px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 6px;
}

.footer__title {
  font-size: 48px;
  color: #ffffff;
}

.footer__desc {
  font-size: 24px;
  line-height: 29px;
  color: #aaaaaa;
  margin-bottom: 24px;
}

.footer__nav {
  height: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__contact {
  margin-bottom: 20px;
}

.footer__contact-label {
  font-size: 14px;
  font-weight: bold;
  color: #ff5c00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.footer__contact-email {
  font-size: 14px;
  color: #aaaaaa;
  list-style: none;
  margin-bottom: 8px;
}

.footer__contact-note {
  font-size: 14px;
  color: #aaaaaa;
  margin-bottom: 8px;
}

.footer__legal {
  margin-bottom: 20px;
}

.footer__legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer__legal-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__legal-links li a:hover {
  color: #ffffff;
}

.footer__bottom {
  height: auto;
  width: 100%;
  display: flex;
  align-items: end;
  justify-content: space-between;
}

.footer__logo {
  height: 70px;
  width: auto;
}

.footer__copy {
  font-size: 10px;
  color: #555555;
}

.footer__sitemap-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.footer__sitemap-links li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__sitemap-links li a:hover {
  color: #ffffff;
}

/* =============================================
   TABLET — max-width: 1024px
   ============================================= */
@media (max-width: 1024px) {
  .navbar {
    height: 70px;
    padding: 12px 24px;
  }

  .navbar__logo {
    width: 80px;
    height: 60px;
  }

  .navbar__links {
    gap: 12px;
  }

  .navbar__link {
    font-size: 13px;
  }

  .hero {
    padding: 40px 32px 80px;
  }

  .hero__title {
    width: 55%;
    font-size: 44px;
  }

  .hero__right {
    width: 380px;
  }

  .hero__sub {
    font-size: 18px;
  }

  .featured {
    padding: 80px 32px;
    gap: 60px;
  }

  .featured__title {
    width: 35%;
    font-size: 38px;
  }

  .featured__subtitle {
    width: 58%;
    font-size: 18px;
  }

  .articles-row {
    padding: 0 32px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .article__card {
    width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    height: auto;
    min-height: 340px;
  }

  .article-card__title {
    font-size: 20px;
  }

  .article-card-body__tag {
    font-size: 13px;
  }

  .article-card__text {
    font-size: 14px;
  }

  .thought-leadership {
    padding: 80px 32px;
  }

  .thought-leadership__header h2 {
    font-size: 38px;
  }

  .reports {
    padding: 80px 32px;
    min-height: auto;
    gap: 48px;
  }

  .reports__title {
    font-size: 38px;
  }

  .reports__subtitle {
    font-size: 18px;
  }

  .reports__content {
    flex-wrap: wrap;
    gap: 16px;
  }

  .reports__card {
    width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
    height: auto;
    min-height: 220px;
  }

  .card__title {
    font-size: 20px;
  }

  .card__subtitle {
    font-size: 14px;
  }

  .cta-banner {
    height: auto;
    padding: 80px 32px;
  }

  .cta__title {
    width: 60%;
    font-size: 38px;
  }

  .cta__subtitle {
    width: 65%;
    font-size: 18px;
  }

  .footer-split {
    height: auto;
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
    padding: 48px 32px 32px;
  }

  .footer-split__right {
    width: 100%;
    height: 300px;
    padding: 32px;
  }

  .footer-split__cta-title {
    font-size: 36px;
  }

  .footer__title {
    font-size: 36px;
  }

  .footer__desc {
    font-size: 18px;
  }
}

/* =============================================
   MOBILE — max-width: 768px
   ============================================= */
@media (max-width: 768px) {
  .navbar {
    height: 64px;
    padding: 0 20px;
    background-color: rgba(0, 0, 0, 0.6);
  }

  .navbar__logo {
    width: 70px;
    height: 54px;
  }

  .navbar__links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background-color: #111111;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 24px 20px;
    gap: 0;
    overflow-y: auto;
    z-index: 9998;
  }

  .navbar__links--open {
    display: flex;
  }

  .navbar__item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar__link {
    display: block;
    width: 100%;
    height: auto;
    color: #ffffff;
    font-size: 16px;
    padding: 16px 0;
    text-decoration: none;
  }

  .navbar__link--active {
    color: #ff5c00;
  }

  .navbar__dropdown {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    pointer-events: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
    padding: 0 0 8px 16px;
    width: 100%;
    min-width: unset;
    display: none !important;
  }

  .navbar__dropdown--active {
    display: flex !important;
    pointer-events: all;
    transform: none !important;
  }

  .navbar__dropdown-label {
    color: #aaaaaa;
    font-size: 14px;
  }

  .navbar__dropdown-arrow {
    color: #aaaaaa;
  }

  .navbar__dropdown-row {
    padding: 10px 8px;
  }

  .navbar__cta {
    display: none;
  }

  .navbar__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
  }

  .navbar__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.25s ease;
  }

  .navbar__hamburger--open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .navbar__hamburger--open span:nth-child(2) {
    opacity: 0;
  }

  .navbar__hamburger--open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 20px 60px;
  }

  .hero__bottom {
    flex-direction: column;
    gap: 32px;
  }

  .hero__title {
    width: 100%;
    font-size: 32px;
  }

  .hero__right {
    width: 100%;
  }

  .hero__sub {
    font-size: 16px;
  }

  .featured {
    padding: 60px 20px;
    gap: 40px;
  }

  .featured__info {
    flex-direction: column;
    gap: 16px;
  }

  .featured__title {
    width: 100%;
    font-size: 28px;
  }

  .featured__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .articles-row {
    padding: 0 20px;
    flex-direction: column;
    gap: 16px;
  }

  .article__card {
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 24px;
  }

  .article-card__title {
    font-size: 20px;
  }

  .article-card-body__tag {
    font-size: 12px;
    padding: 6px 10px;
  }

  .article-card__text {
    font-size: 14px;
  }

  .thought-leadership {
    padding: 60px 20px;
  }

  .thought-leadership__header h2 {
    font-size: 32px;
  }

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

  .reports {
    padding: 60px 20px;
    gap: 40px;
  }

  .reports__info {
    gap: 16px;
  }

  .reports__title {
    font-size: 32px;
  }

  .reports__subtitle {
    font-size: 18px;
  }

  .reports__content {
    flex-direction: column;
    gap: 16px;
  }

  .reports__card {
    width: 100%;
    height: auto;
    min-height: 0;
    padding: 20px;
  }

  .card__title {
    font-size: 18px;
  }

  .card__subtitle {
    font-size: 14px;
  }

  .cta-banner {
    height: auto;
    padding: 60px 20px;
  }

  .cta__title {
    width: 100%;
    font-size: 28px;
  }

  .cta__subtitle {
    width: 100%;
    font-size: 16px;
  }

  .ctas {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
  }

  .cta__1,
  .cta__2 {
    text-align: center;
    width: 100%;
    font-size: 14px;
  }

  .footer-split {
    height: auto;
    flex-direction: column;
  }

  .footer-split__left {
    width: 100%;
    padding: 48px 20px 32px;
  }

  .footer-split__right {
    width: 100%;
    height: 250px;
    padding: 24px 20px;
  }

  .footer-split__cta-title {
    font-size: 28px;
  }

  .footer__title {
    font-size: 28px;
  }

  .footer__desc {
    font-size: 16px;
  }

  .footer__nav {
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 48px;
  }

  .footer__legal-links {
    gap: 8px;
  }
}
