@media (min-width: 992px) {
  .header h1 {
    font-size: 3.5rem;
  }

  .promotion-committee-block .grid-container {
    xgap: 3rem;
    padding: 4rem 6rem;
  }

  .promotion-committee-block .content {
    max-width: 460px;
  }
}


.pc-block {
  display: flex;
  justify-content: right;
}

.pc-block .grid-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  padding: 3rem 13rem;
}

.pc-block .item {
  display: flex;
}

.pc-block .item.left {
  justify-content: flex-start;
  text-align: right;
  
}

.pc-block .item.right {
  justify-content: flex-end;
}

.pc-block .content {
 max-width: 50%;
    min-width: 50%;
    direction: rtl;
    padding-right: 29px;
}

        
.pc-block .content::before {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  height: 60px;
  width: 10px;
  background-color: goldenrod;
}

.pc-block .number {
  color: green;
  font-weight: 800;
  font-size: 30px;
  margin-left: 6px;
}

div.content > p {
    font-family: 'Majalla', sans-serif !important;
     margin: 0;
    font-size:36px;
}

/* Responsive */
@media (max-width: 991.98px) {
  .pc-header { height: 60vh; }
  .pc-header h1 { font-size: 2.2rem; }
  .pc-block .grid-container { padding: 2.5rem 2rem; }
  .pc-block .content {
    max-width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .pc-header { height: 50vh; }
  .pc-header h1 { font-size: 1.9rem; }
  .pc-block .grid-container { padding: 2rem 1rem; }
}