/* ========================================
   Journal Page
   ======================================== */

.journal {
  padding: 140px 0 120px;
}

.journal-entry {
  margin-bottom: 100px;
}

.journal-entry:last-child {
  margin-bottom: 0;
}

/* Video Embed */
.journal-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
}

.journal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Text */
.journal-text {
  color: #333;
  line-height: 1.7;
}

.journal-text strong {
  font-weight: 700;
  color: #000;
}

.journal-body p {
  color: #333;
  line-height: 1.7;
  margin-bottom: 8px;
}

.journal-body p:last-child {
  margin-bottom: 0;
}

.journal-body strong {
  font-weight: 700;
  color: #000;
}

.journal-body em {
  font-style: italic;
}

.journal-body s {
  color: #999;
}

.journal-indent {
  padding-left: 20px;
}

.journal-link {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.journal-link:hover {
  color: #555;
}

/* Meta / Timestamp */
.journal-meta {
  color: #999;
  margin-top: 20px;
}

/* Image */
.journal-image {
  margin: 20px 0;
}

.journal-image img {
  width: 100%;
  border-radius: 12px;
}

/* Subscribe */
.journal-subscribe {
  margin-bottom: 100px;
}

.journal-subscribe-form {
  display: flex;
  border: 1px solid #ddd;
  border-radius: 100px;
  overflow: hidden;
}

.journal-subscribe-form input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  font-family: inherit;
  font-size: 15px;
  color: #000;
  background: transparent;
  outline: none;
}

.journal-subscribe-form input::placeholder {
  color: #999;
}

.journal-subscribe-form button {
  padding: 12px 24px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s ease;
  margin: 4px;
}

.journal-subscribe-form button:hover {
  opacity: 0.85;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .journal {
    padding: 100px 0 80px;
  }

  .journal-entry {
    margin-bottom: 80px;
  }

  .journal-subscribe {
    margin-bottom: 80px;
  }
}
