#permaliner {
  padding: 80px 20px;
  background-color: var(--light-grey);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.pl-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.pl-image-wrap {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15);
}

.pl-image-placeholder {
  background: var(--black);
  border-radius: 10px;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 3rem;
  gap: 12px;
}


.section-tag {
  display: inline-block;
  padding: 6px 16px;
  font-size: 12px;
  font-family: 'Segoe UI', Arial, sans-serif;
    background: rgba(204, 31, 43, 0.1);
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(204, 31, 43, 0.2)
}

.pl-text h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 20px 0 10px 0;
  line-height: 1.2;
      font-family: 'Segoe UI', Arial, sans-serif;
}

.divider {
  width: 60px;
  height: 4px;
  background-color: #8B2B2B;
  margin: 10px 0 25px 0;
}

.lead p {
  font-size: 17px;
  line-height: 1.7;
  color: #555555;
  margin: 0 0 20px 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}

/* Tablet */
@media (max-width: 1024px) {
  #permaliner {
    padding: 60px 20px;
  }
  .pl-two-col {
    gap: 50px;
  }
  .pl-text h2 {
    font-size: 36px;
  }
  .lead {
    font-size: 15px;
  }
}

/* Mobile */
@media (max-width: 991px) {
  #permaliner {
    padding: 50px 20px;
  }
  .container {
    padding: 0 15px;
  }

  .pl-image-placeholder {
    font-size: 60px;
    border-radius: 8px;
  }
  .pl-image-placeholder span {
    font-size: 14px;
  }
  .section-tag {
    font-size: 11px;
    padding: 5px 14px;
  }
  .pl-text h2 {
    font-size: 28px;
    margin: 15px 0 8px 0;
  }
  .divider {
    width: 50px;
    height: 3px;
    margin: 8px 0 20px 0;
  }
  .lead {
    font-size: 15px;
    line-height: 1.6;
  }
}

/* Small Mobile */
@media (max-width: 767px) {
  #permaliner {
    padding: 40px 15px;
  }
  .pl-text h2 {
    font-size: 24px;
  }
  .lead {
    font-size: 14px;
  }
  .pl-image-placeholder {
    font-size: 50px;
  }
    .pl-two-col {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}
