@import url(../style.css);

header {
  box-shadow: 0px 1px 10px rgba(0, 0, 0, .5);
}

.feature-article {
  min-height: 80vh;
  padding: 24px;
}

.feature-article>.container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 auto;
  max-width: 1200px;
}

.story-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5em;
}

/* Go Back Button Styling */
.go-back-btn {
  display: flex;
  align-items: center;
  gap: 0.5em;
  background: var(--red, #AC0807);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 0.5em 1.2em 0.5em 0.9em;
  font-size: 1rem;
  font-family: var(--font-head, inherit);
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s;
  z-index: 10;
}
.go-back-btn:hover {
  background: #8a0606;
}
.go-back-btn .fa-arrow-left {
  margin-right: 0.5em;
  color: #fff;
}

.feature-article>.container>button {
  align-self: flex-start;
}

.feature-article>.container>h1 {
  font-size: var(--header-medium);
}

.feature-article>.container>h1>span {
  color: var(--primary-color);
}

.feature-article>.container>.content {
  display: flex;
  flex-direction: column;
  gap: 12px;

}

.feature-article>.container>.content>.side {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-article>.container>.content>.side-1 {
  order: 2;
}

.feature-article>.container>.content>.side-2 {
  order: 1;
}

.feature-article>.container>.content>.side>img {
  display: block;
  border-radius: 15px;
  width: 100%;
}

.feature-article>.container>.content>.side>p {
  text-align: justify;
}

.feature-article>.container>.content>.side>p span {
  color: var(--primary-color);
}

.feature-article>.container>.content>.side-2>p {
  order: 2;
}

.feature-article>.container>.content>.side-2>img {
  order: 1;
}

/* ================================================================== */
/* Tablet breakpoint */
@media only screen and (min-width: 920px) {
  .feature-article {
    padding: 24px 48px;
  }

  .feature-article>.container>.content {
    flex-direction: row;
    gap: 24px;
  }

  .feature-article>.container>.content>.side-1 {
    order: 1;
  }

  .feature-article>.container>.content>.side-2 {
    order: 2;
  }

  .feature-article>.container>.content>.side-2>p {
    order: 1;
  }

  .feature-article>.container>.content>.side-2>img {
    order: 2;
  }
}