.elementor-949 .elementor-element.elementor-element-b9803bb{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-b47c455 *//* --- GTA Article Styling --- */
.gta-article-container {
  font-family: sans-serif; /* Choose a suitable font */
  line-height: 1.6;
  color: #333;
  max-width: 900px; /* Adjust max width */
  margin: 20px auto;
  padding: 15px;
  background-color: #fdfdfd; /* Light background */
}

.article-header {
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #005A9C; /* Example Blue */
  padding-bottom: 15px;
}

.article-header h1 {
  font-size: 2.2em;
  margin-bottom: 5px;
  color: #003366; /* Darker Blue */
}

.article-header .subtitle {
  font-size: 1.2em;
  color: #555;
  font-style: italic;
}

h2 {
  font-size: 1.8em;
  color: #005A9C; /* Example Blue */
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

h3 {
    font-size: 1.3em;
    color: #003366;
    margin-top: 20px;
    margin-bottom: 10px;
}

h4 {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 10px; /* Adjustment: Slightly more space below H4 */
    font-weight: 600;
}

p {
  margin-bottom: 15px;
}

strong {
 color: #D9534F; /* Example Red/Orange for emphasis */
}

ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}
ul li {
    margin-bottom: 8px;
}

/* --- Image Styling --- */
.article-image {
  margin: 25px 0; /* Adjustment: Increased vertical margin */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Center images */
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.article-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.article-image figcaption {
  font-size: 0.9em;
  color: #666;
  margin-top: 8px; /* Adjustment: Slightly more space above caption */
  font-style: italic;
}

.article-image.full-width {
  width: 100%;
  margin: 30px 0; /* Adjustment: Increased vertical margin */
}

.article-image.right-float {
    width: 35%;
    max-width: 200px;
    float: right;
    margin: 5px 0 15px 25px; /* Adjustment: Added top margin */
}

.article-image.right-float img {
    border: 1px solid #eee;
}

/* Clearfix for floats */
.clear { clear: both; }


/* --- Stat Highlights & Basic Charts --- */
.stat-highlight {
  background-color: #f0f5f9; /* Light blue background */
  border-left: 5px solid #007bff; /* Blue accent */
  padding: 20px 25px; /* Adjustment: Increased padding */
  margin: 30px 0; /* Adjustment: Increased vertical margin */
  border-radius: 4px;
  position: relative; /* Needed for absolute positioning of some labels if they overflow */
  overflow: visible; /* Adjustment: Allow labels to potentially overflow container bounds slightly */
}

.stat-highlight h3, .stat-highlight h4 {
    margin-top: 0;
    margin-bottom: 15px; /* Adjustment: More space below chart titles */
    color: #0056b3;
}

/* Reserve Bars (Vertical) */
.reserve-bars {
  display: flex;
  align-items: flex-end;
  height: 120px; /* Adjustment: Increased height */
  gap: 30px; /* Adjustment: Increased gap */
  justify-content: center;
  margin-bottom: 15px; /* Adjustment: More space below bars */
  margin-top: 10px; /* Adjustment: Space above bars */
}
.reserve-bars .bar {
  background-color: #28a745;
  width: 60px; /* Adjustment: Wider bars */
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.reserve-bars .bar.high-end { background-color: #1a6f2d; }

.reserve-bars .bar:hover {
    background-color: #ffc107;
    transform: translateY(-5px);
}
.reserve-bars .bar::after { /* Tooltip label on hover */
    content: attr(data-value);
    position: absolute;
    bottom: 108%; /* Adjustment: Position slightly higher */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.8); /* Adjustment: Slightly darker tooltip */
    color: white;
    padding: 5px 8px; /* Adjustment: More padding */
    border-radius: 4px; /* Adjustment: Slightly more rounded */
    font-size: 0.85em; /* Adjustment: Slightly larger font */
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s; /* Ensure visibility transition matches */
    visibility: hidden; /* Hide completely when not hovered */
    z-index: 10; /* Adjustment: Ensure tooltip is on top */
}
.reserve-bars .bar:hover::after {
    opacity: 1;
    visibility: visible; /* Show on hover */
    transition: opacity 0.3s ease;
}
/* Text below the Reserve chart */
.reserve-bars + p {
    text-align: center;
    font-weight: bold;
    margin-top: 15px; /* Adjustment: More space above this text */
    margin-bottom: 0;
    font-size: 0.95em;
}


/* Production Chart (Vertical) - FIXED */
.production-chart .production-bars {
    display: flex;
    align-items: flex-end;
    height: 130px;
    /* Adjustment: Increase gap significantly */
    gap: 40px;
    justify-content: center;
    margin-top: 10px;
    /* Adjustment: Add even more bottom margin for wrapped labels */
    margin-bottom: 65px; /* Increased significantly */
    padding: 0 10px; /* Add some padding to prevent edge collision */
}
.production-chart .bar {
    width: 50px;
    border-radius: 3px 3px 0 0;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
    background-color: #fd7e14;
}
.production-chart .bar.phase2 { background-color: #dc3545; }
.production-chart .bar.future { background-color: #6f42c1; }

.production-chart .bar:hover { transform: scaleY(1.05) translateY(-3px); }

.production-chart .bar::after { /* Label below bar - FIXED */
    content: attr(data-label);
    position: absolute;
    /* Adjustment: Move further down */
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.85em;
    color: #444;
    text-align: center;
    /* Adjustment: Allow wrapping */
    white-space: normal;
    font-weight: 500;
    /* Adjustment: Remove fixed width, use max-width */
    width: auto; /* Let content determine width */
    max-width: 80px; /* Constrain wrapping width slightly wider than bar */
    line-height: 1.2; /* Adjust line height for wrapped text */
}


/* Interest Chart (Horizontal) */
.interest-chart .interest-bars {
  display: flex;
  width: 100%;
  height: 35px; /* Adjustment: Increased height */
  border-radius: 4px;
  overflow: hidden;
  margin-top: 15px; /* Adjustment: More space above bar */
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
}
.interest-chart .bar {
  height: 100%;
  position: relative;
  transition: transform 0.2s ease, filter 0.2s ease;
  display: flex; /* For centering text inside if needed */
  align-items: center;
  justify-content: center;
}
.interest-chart .bar.bp { background-color: #007bff; }
.interest-chart .bar.kosmos { background-color: #ffc107; }
.interest-chart .bar.petrosen { background-color: #28a745; }
.interest-chart .bar.smhpm { background-color: #6c757d; }

.interest-chart .bar:hover {
    transform: scale(1.01); /* Adjustment: Subtle scale */
    filter: brightness(1.15); /* Adjustment: Brighter hover */
    z-index: 1;
}

.interest-chart .bar::after { /* Tooltip label on hover */
    content: attr(data-label);
    position: absolute;
    bottom: 115%; /* Adjustment: More space above */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 8px;
    border-radius: 4px;
    font-size: 0.85em;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
    visibility: hidden;
    z-index: 10; /* Ensure tooltip is on top */
}
.interest-chart .bar:hover::after {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
}


/* Investment Figures */
.investment-figures {
    display: flex;
    justify-content: space-around;
    text-align: center;
    margin-top: 20px; /* Adjustment: More space above */
    gap: 15px; /* Add gap between figures */
    flex-wrap: wrap; /* Allow wrapping */
}
.investment-figures div {
    font-size: 1.1em;
    font-weight: bold;
    color: #0056b3;
    padding: 10px; /* Add some padding */
    background-color: #e7f1ff; /* Lighter blue background */
    border-radius: 4px;
    min-width: 150px; /* Give some minimum width */
}

/* GDP Chart - FIXED */
.gdp-chart .gdp-bars {
    display: flex;
    align-items: flex-end;
    height: 100px;
     /* Adjustment: Increase gap significantly */
    gap: 45px;
    justify-content: center;
    margin-top: 10px;
    /* Adjustment: Add even more bottom margin for wrapped labels */
    margin-bottom: 60px; /* Increased significantly */
    padding: 0 10px; /* Add some padding */
}
.gdp-chart .bar {
    width: 55px;
    border-radius: 3px 3px 0 0;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.gdp-chart .bar.mauritania { background-color: #dc3545; }
.gdp-chart .bar.senegal { background-color: #28a745; }

.gdp-chart .bar:hover { transform: translateY(-5px); }

.gdp-chart .bar::after { /* Label below bar - FIXED */
    content: attr(data-label);
    position: absolute;
     /* Adjustment: Move further down */
    top: 115%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9em;
    color: #333;
    text-align: center;
     /* Adjustment: Allow wrapping */
    white-space: normal;
    font-weight: 500;
    /* Adjustment: Remove fixed width, use max-width */
    width: auto; /* Let content determine width */
    max-width: 90px; /* Constrain wrapping width */
    line-height: 1.2; /* Adjust line height for wrapped text */
}


/* --- Timeline Styling --- */
.timeline-list {
  list-style: none;
  margin: 30px 0 30px 0; /* Adjustment: More space around timeline */
  padding-left: 25px; /* Adjustment: Slightly more padding */
  border-left: 3px solid #007bff;
  position: relative;
}
.timeline-list li {
  margin-bottom: 25px; /* Adjustment: More space between items */
  position: relative;
  padding-left: 30px; /* Adjustment: More space for the dot */
}
.timeline-list li::before {
  content: '';
  position: absolute;
  left: -36px; /* Adjustment: Align with thicker padding */
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: #ffffff;
  border: 3px solid #007bff;
  border-radius: 50%;
  z-index: 1;
}
.timeline-list li strong {
    color: #0056b3;
    display: block; /* Make date/milestone stand out more */
    margin-bottom: 3px;
}

/* --- Benefits & Concerns Section --- */
.benefits-concerns {
  display: flex;
  gap: 30px;
  margin-top: 25px; /* Adjustment: More space above */
  flex-wrap: wrap;
}
.benefits-concerns .column {
  flex: 1;
  min-width: 280px;
  background-color: #fff;
  padding: 25px; /* Adjustment: More padding */
  border-radius: 5px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.benefits-concerns .column h3 {
    margin-top: 0;
    margin-bottom: 15px; /* Adjustment: Space below column titles */
    text-align: center;
    font-size: 1.2em; /* Adjustment: Slightly smaller column titles */
}
.benefits-concerns .benefits h3 { color: #28a745; }
.benefits-concerns .concerns h3 { color: #dc3545; }

.benefits-concerns ul {
    margin-left: 5px; /* Adjustment: Reduce indent for custom bullets */
    padding-left: 0;
    list-style: none; /* Remove default bullets */
}

.benefits-concerns .benefits ul li::before {
     content: '✓ ';
     color: #28a745;
     font-weight: bold;
     display: inline-block;
     width: 1.2em; /* Ensure consistent alignment */
}
.benefits-concerns .concerns ul li::before {
     content: '⚠️ ';
     color: #dc3545;
     font-weight: bold;
     display: inline-block;
     width: 1.2em; /* Ensure consistent alignment */
}


.benefits-concerns .warning {
    color: #856404;
    background-color: #fff3cd;
    border: 1px solid #ffeeba;
    padding: 12px 15px; /* Adjustment: More padding */
    border-radius: 4px;
    font-weight: bold;
    margin-top: 20px; /* Adjustment: More space above */
    text-align: center;
    font-size: 0.95em;
}

/* --- Footer --- */
.article-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 2px solid #005A9C;
}
.article-footer h2 {
    border-bottom: none;
}


/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .article-header h1 { font-size: 1.8em; }
  h2 { font-size: 1.5em; }
  h3 { font-size: 1.2em; }

  .article-image.right-float {
      float: none;
      width: 80%;
      max-width: 300px;
      margin: 20px auto; /* Adjustment: More margin when stacked */
  }

  .benefits-concerns {
      flex-direction: column;
      gap: 25px; /* Adjustment: Increase gap when stacked */
  }

  .investment-figures {
      flex-direction: column;
      gap: 15px;
  }
  .investment-figures div {
      min-width: unset; /* Remove min-width when stacked */
  }
}

@media (max-width: 480px) {
    .article-header h1 { font-size: 1.5em; }
    h2 { font-size: 1.3em; }
    .reserve-bars, .production-chart .production-bars, .gdp-chart .gdp-bars {
        height: 80px; /* Adjust height */
        gap: 15px; /* Adjust gap */
         /* Adjustment: Less bottom margin on smallest screens */
        margin-bottom: 50px;
    }
    .reserve-bars .bar, .production-chart .bar, .gdp-chart .bar {
        width: 35px; /* Adjust width */
    }
    /* Adjust label font size for small screens */
    .production-chart .bar::after, .gdp-chart .bar::after {
        font-size: 0.75em;
        max-width: 70px; /* Further constrain max-width */
    }

    .interest-chart .interest-bars { height: 25px; }
    .benefits-concerns .column { padding: 15px; } /* Less padding on small screens */
    .timeline-list { padding-left: 15px;}
    .timeline-list li { padding-left: 20px; margin-bottom: 15px;}
    .timeline-list li::before { left: -26px;}
}/* End custom CSS */