/* Main content layout - 3 clean columns */
.outlook-content-wrapper {
  display: flex;
  gap: 35px;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0 20px 0;
}

/* Clean timeline connector */
.outlook-content-wrapper::before {
  content: "";
  position: absolute;
  top: 46px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, #10b981 0%, #f59e0b 50%, #8b5cf6 100%);
  border-radius: 2px;
  z-index: 1;
}

.outlook-phase-card {
  flex: 0 1 350px;
  max-width: 370px;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 18px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  border-left: 4px solid;
  align-items: stretch;
  height: fit-content;
  position: relative;
}

/* Simplified decorative elements */
.outlook-phase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.outlook-phase-card.outlook-short-term {
  border-left-color: #10b981;
}

.outlook-phase-card.outlook-medium-term {
  border-left-color: #f59e0b;
}

.outlook-phase-card.outlook-long-term {
  border-left-color: #8b5cf6;
}

.outlook-phase-header {
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

/* Clean timeline step indicator */
.outlook-phase-header::before {
  content: "";
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid white;
  z-index: 3;
}

.outlook-short-term .outlook-phase-header::before {
  background: #10b981;
  box-shadow: 0 0 0 1px #10b981;
}

.outlook-medium-term .outlook-phase-header::before {
  background: #f59e0b;
  box-shadow: 0 0 0 1px #f59e0b;
}

.outlook-long-term .outlook-phase-header::before {
  background: #8b5cf6;
  box-shadow: 0 0 0 1px #8b5cf6;
}

.outlook-phase-icon {
  font-size: 3em;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.outlook-short-term .outlook-phase-icon {
  background: linear-gradient(135deg, #10b981, #34d399);
}

.outlook-medium-term .outlook-phase-icon {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.outlook-long-term .outlook-phase-icon {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
}

.outlook-phase-title {
  font-size: 1.4em;
  font-weight: 700;
  color: var(--heading-color, #1e3a8a);
  margin-top: 10px;
  position: relative;
}

/* Clean title underline */
.outlook-phase-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  border-radius: 1px;
}

.outlook-short-term .outlook-phase-title::after {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.outlook-medium-term .outlook-phase-title::after {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.outlook-long-term .outlook-phase-title::after {
  background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

/* Clean features layout */
.outlook-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  padding-left: 0;
  position: relative;
}

.outlook-feature-visual {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border-radius: 12px;
  width: calc(100% - 6px);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
  box-sizing: border-box;
}

/* Feature highlight special styling - removed special border/background */
.outlook-feature-visual.outlook-highlight-feature {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.outlook-visual-icon {
  font-size: 2em;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 3px 8px rgba(59, 130, 246, 0.2);
}

.outlook-visual-text {
  font-size: 1em;
  font-weight: 600;
  color: var(--heading-color, #1e3a8a);
  text-align: left;
  flex: 1;
  line-height: 1.3;
}
