/* ========================================
   PREMIUM PERSONAL WEBSITE HERO
======================================== */

.premium-hero {
  background: #070606;
  min-height: 650px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}


/* subtle background glow */

.premium-hero::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle,
      rgba(198, 151, 32, 0.07),
      transparent 65%);
  pointer-events: none;
}


.hero-container {
  width: 86%;
  max-width: 1180px;
  margin: auto;

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;

  gap: 80px;

  position: relative;
  /* z-index: 2; */
}


/* ================================
   LEFT CONTENT
================================ */

.hero-content {
  max-width: 620px;
}


.hero-eyebrow {
  color: #c99c27;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 4px;
  display: block;
  margin-bottom: 22px;
}


.hero-content h1 {
  color: #f5f5f5;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  margin: 0;
  letter-spacing: 1px;
}


.hero-content h1 span {
  display: block;
  color: #f5f5f5;
}


.gold-line {
  width: 70px;
  height: 2px;
  background: #c99c27;
  margin: 27px 0;
}


.hero-intro {
  max-width: 570px;

  color: #bdbdbd;

  font-size: 16px;
  line-height: 1.9;

  margin-bottom: 34px;
}


/* ================================
   BUTTONS
================================ */

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}


.hero-buttons a {
  min-width: 180px;

  height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 17px;

  font-size: 12px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.7px;

  text-decoration: none;

  transition: 0.3s ease;
}


.btn-gold {
  background: #c99c27;
  color: #fff;
  border: 1px solid #c99c27;
}


.btn-gold:hover {
  background: #b58a1e;
  border-color: #b58a1e;
  transform: translateY(-2px);
}


.btn-outline {
  background: transparent;
  color: #eaeaea;
  border: 1px solid #454545;
}


.btn-outline:hover {
  border-color: #c99c27;
  color: #c99c27;
  transform: translateY(-2px);
  background-color: #c99c27;
  color: #eaeaea;
}


.hero-buttons a span {
  font-size: 17px;
  transition: transform 0.3s ease;
}


.hero-buttons a:hover span {
  transform: translateX(4px);
}


/* ================================
   MINI DETAILS
================================ */

.hero-meta {
  display: flex;
  align-items: center;

  gap: 25px;

  margin-top: 45px;
}


.hero-meta>div:not(.meta-divider) {
  display: flex;
  flex-direction: column;
}


.meta-number {
  color: #eeeeee;

  font-size: 16px;
  font-weight: 500;

  margin-bottom: 3px;
}


.meta-label {
  color: #777;

  font-size: 11px;
  letter-spacing: 1px;

  text-transform: uppercase;
}


.meta-divider {
  width: 1px;
  height: 38px;
  background: #343434;
}


/* ================================
   RIGHT IMAGE
================================ */

.hero-visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 520px;
}


.image-frame {
  position: relative;

  width: 390px;
  max-width: 100%;

  z-index: 2;
}


.image-frame img {
  width: 100%;
  display: block;

  object-fit: contain;

  filter: saturate(0.75) contrast(1.05);
  object-fit: cover;
  object-position: center 20%;
}


/* very subtle border accent */

.image-frame::before {
  content: "";

  position: absolute;

  left: -20px;
  top: 8%;

  width: 1px;
  height: 82%;

  background: linear-gradient(to bottom,
      transparent,
      #c99c27,
      transparent);
}

/* .visual-line {
    position: absolute;

    width: 280px;
    height: 280px;

    border: 1px solid rgba(201, 156, 39, 0.16);

    right: 15px;
    top: 55px;

    z-index: 0;
}  */


.vertical-text {
  position: absolute;

  right: -40px;

  color: #555;

  font-size: 9px;
  letter-spacing: 3px;

  writing-mode: vertical-rl;

  transform: rotate(180deg);
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 991px) {

  .premium-hero {
    padding: 80px 0;
  }


  .hero-container {
    grid-template-columns: 1fr;

    gap: 45px;

    text-align: center;
    width: 94%;


  }


  .hero-content {

    margin: auto;

    width: 92% !important;

  }


  .gold-line {
    margin: 25px auto;
  }


  .hero-intro {
    margin-left: auto;
    margin-right: auto;
  }


  .hero-buttons,
  .hero-meta {
    justify-content: center;
  }


  .hero-visual {
    min-height: auto;
  }


  .vertical-text {
    display: none;
  }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 576px) {

  .premium-hero {
    padding: 60px 0;
  }


  .hero-container {
    width: 94%;
  }


  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 2.5px;
  }


  .hero-content h1 {
    font-size: 40px;
  }


  .hero-intro {
    font-size: 14px;
    line-height: 1.8;
  }


  .hero-buttons {
    flex-direction: column;
  }


  .hero-buttons a {
    width: 100%;
  }


  .hero-meta {
    gap: 15px;
  }


  .image-frame {
    width: 300px;
  }

}




/* =========================================================
   WHAT I DO — PREMIUM EDITORIAL NAVIGATION
========================================================= */

.home-directions {
  position: relative;

  background: #080808;
  background-color: #070606;
  color: #ffffff;

  padding: 80px 0 80px;

  overflow: hidden;
}


/* subtle gold atmosphere */

.home-directions::before {
  content: "";

  position: absolute;

  width: 520px;
  height: 520px;

  right: -280px;
  top: 250px;

  border: 1px solid rgba(201, 162, 39, 0.08);

  transform: rotate(45deg);

  pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.directions-container {
  width: min(1380px, 88%);
  margin: 0 auto;

  position: relative;
  z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.directions-header {
  display: flex;
  align-items: center;

  gap: 28px;

  margin-bottom: 75px;
}

.directions-kicker {
  display: flex;
  align-items: center;

  gap: 16px;

  white-space: nowrap;

  color: #ffffff;

  font-size: 11px;
  font-weight: 600;

  letter-spacing: 4px;
}

.direction-number {
  color: #c9a227;

  font-family: Georgia, serif;

  font-size: 15px;

  letter-spacing: 1px;
}

.directions-rule {
  height: 1px;

  flex: 1;

  background: #292929;
}

.directions-kicker-right {
  color: #555;

  font-size: 9px;

  letter-spacing: 3px;

  white-space: nowrap;
}


/* =========================================================
   INTRO
========================================================= */

.directions-intro {
  display: grid;

  grid-template-columns: 1.2fr .8fr;

  gap: 100px;

  margin-bottom: 85px;
}

.directions-intro h2 {
  margin: 0;

  font-size: clamp(48px, 6.2vw, 80px);

  line-height: .92;

  letter-spacing: -4px;

  font-weight: 600;

  text-transform: uppercase;
}

.directions-intro h2 span {
  color: #c9a227;
}

.directions-intro-text {
  align-self: end;

  max-width: 470px;
}

.directions-intro-text p {
  margin: 0;

  color: #8b8b8b;

  font-size: 15px;

  line-height: 1.9;
}

.intro-mini-line {
  width: 45px;
  height: 2px;

  margin-top: 28px;

  background: #c9a227;
}


/* =========================================================
   LIST
========================================================= */

.directions-list {
  border-top: 1px solid #292929;
}


/* =========================================================
   INDIVIDUAL ITEM
========================================================= */

.direction-item {
  position: relative;

  display: grid;

  grid-template-columns: 90px 1fr 130px;

  align-items: center;

  gap: 35px;

  min-height: 205px;

  padding: 35px 10px;

  border-bottom: 1px solid #292929;

  color: #ffffff;

  overflow: hidden;

  transition:
    background .4s ease,
    padding .4s ease;
}


/* hover background */

.direction-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(201, 162, 39, .055),
      transparent 70%);

  opacity: 0;

  transition: opacity .4s ease;

  pointer-events: none;
}


/* gold left line */

.direction-item::after {
  content: "";

  position: absolute;

  left: 0;
  top: 0;

  width: 2px;
  height: 0;

  background: #c9a227;

  transition: height .45s ease;
}

/* .direction-item:hover {
    padding-left: 25px;
} */

.direction-item:hover::before {
  opacity: 1;
}

.direction-item:hover::after {
  height: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.direction-index {
  align-self: start;

  padding-top: 7px;

  color: #4d4d4d;

  font-family: Georgia, serif;

  font-size: 18px;

  transition: color .3s ease;
}

.direction-item:hover .direction-index {
  color: #c9a227;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.direction-main {
  position: relative;
  z-index: 2;
}

.direction-category {
  margin-bottom: 13px;

  color: #c9a227;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 3px;
}

.direction-main h3 {
  margin: 0;

  max-width: 800px;

  font-size: clamp(28px, 3.2vw, 3px);

  line-height: 1;

  letter-spacing: -1.5px;

  font-weight: 600;

  text-transform: uppercase;
}

.direction-main h3 span {
  color: #c9a227;

  transition: color .3s ease;
}

.direction-item:hover .direction-main h3 span {
  color: #e0bd42;
}

.direction-main p {
  max-width: 590px;

  margin: 17px 0 0;

  color: #6f6f6f;

  font-size: 12px;

  line-height: 1.7;

  transition: color .3s ease;
}

.direction-item:hover .direction-main p {
  color: #929292;
}


/* =========================================================
   ACTION
========================================================= */

.direction-action {
  position: relative;
  z-index: 2;

  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 18px;
}

.direction-action span {
  color: #555;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 2px;

  transition: color .3s ease;
}

.direction-action strong {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 43px;
  height: 43px;

  border: 1px solid #363636;

  border-radius: 50%;

  color: #c9a227;

  font-size: 18px;

  font-weight: 400;

  transition:
    background .35s ease,
    border-color .35s ease,
    transform .35s ease;
}

.direction-item:hover .direction-action span {
  color: #c9a227;
}

.direction-item:hover .direction-action strong {
  background: #c9a227;

  border-color: #c9a227;

  color: #080808;

  transform: rotate(45deg);
}


/* =========================================================
   BOTTOM
========================================================= */

.directions-bottom {
  display: flex;

  justify-content: space-between;
  align-items: center;

  padding-top: 28px;

  color: #4b4b4b;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 3px;
}

.bottom-arrow {
  color: #c9a227;

  font-size: 18px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .home-directions {
    padding: 100px 0;
  }

  .directions-intro {
    grid-template-columns: 1fr;

    gap: 35px;

    margin-bottom: 60px;
  }

  .directions-intro-text {
    max-width: 600px;
  }

  .direction-item {
    grid-template-columns: 65px 1fr 90px;

    gap: 20px;

    min-height: 190px;
  }

  .direction-action span {
    display: none;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

  .home-directions {
    padding: 80px 0;
  }

  .directions-container {
    width: 88%;
  }

  .directions-header {
    margin-bottom: 55px;

    gap: 15px;
  }

  .directions-kicker {
    font-size: 10px;

    letter-spacing: 3px;
  }

  .directions-kicker-right {
    display: none;
  }

  .directions-intro {
    gap: 25px;

    margin-bottom: 45px;
  }

  .directions-intro h2 {
    font-size: 45px;

    letter-spacing: -2px;
  }

  .directions-intro-text p {
    font-size: 13px;
  }


  /* mobile list */

  .direction-item {
    grid-template-columns: 40px 1fr;

    gap: 12px;

    min-height: auto;

    padding: 28px 5px;
  }

  .direction-item:hover {
    padding-left: 12px;
  }

  .direction-index {
    font-size: 13px;
  }

  .direction-main h3 {
    font-size: 25px;

    line-height: 1.02;

    letter-spacing: -1px;
  }

  .direction-main p {
    font-size: 11px;

    line-height: 1.7;

    margin-top: 13px;
  }

  .direction-category {
    font-size: 8px;

    letter-spacing: 2px;

    margin-bottom: 10px;
  }

  .direction-action {
    position: absolute;

    right: 0;
    top: 28px;
  }

  .direction-action strong {
    width: 34px;
    height: 34px;

    font-size: 15px;
  }

  .directions-bottom {
    padding-top: 22px;

    font-size: 7px;

    letter-spacing: 2px;
  }

}

/* ================================
   CSR SECTION
================================ */

.csr-section {
  padding: 90px 24px;
  background: #242424;
  color: #fff;
}

.csr-container {
  max-width: 1100px;
  margin: 0 auto;
}


/* Header */

.csr-header {
  max-width: 680px;
  margin: 0 auto 50px;
  text-align: center;
}

.csr-header span {
  display: block;
  margin-bottom: 14px;

  color: #c5a52b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.csr-header h2 {
  margin: 0;

  color: #fff;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.csr-header p {
  max-width: 600px;
  margin: 16px auto 0;

  color: #999;
  font-size: 15px;
  line-height: 1.7;
}


/* Cards */

.csr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.csr-card {
  min-height: 300px;
  padding: 42px 30px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  background: #292929;
  border: 1px solid #9f8424;
  border-radius: 4px;

  transition: all 0.3s ease;
  cursor: pointer;
}

.csr-card:hover {
  transform: translateY(-5px);

  background: #2d2d2d;
  border-color: #c5a52b;

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}


/* Icons */

.csr-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #c5a52b;

  border: 1px solid rgba(197, 165, 43, 0.3);
  border-radius: 50%;
}

.csr-icon svg {
  width: 48px;
  height: 48px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;

  stroke-linecap: round;
  stroke-linejoin: round;
}

.csr-card:hover .csr-icon {
  background: rgba(197, 165, 43, 0.06);
}


/* Card text */

.csr-card h3 {
  margin: 0 0 12px;

  color: #fff;
  font-size: 21px;
  line-height: 1.3;
  font-weight: 500;
}

.csr-card p {
  max-width: 280px;
  margin: 0;

  color: #969696;
  font-size: 14px;
  line-height: 1.7;
}


/* ================================
   TABLET
================================ */

@media (max-width: 850px) {

  .csr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

  .csr-section {
    padding: 70px 18px;
  }

  .csr-header h2 {
    font-size: 36px;
  }

  .csr-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .csr-card {
    min-height: 270px;
    padding: 35px 24px;
  }

}


/* =========================================================
   PREMIUM PERSONAL WEBSITE
   NEWS & EVENTS — EDITORIAL SPLIT CARDS
========================================================= */

.pe-news-section {
  position: relative;

  width: 100%;

  background: #070707;

  color: #ffffff;

  padding: 120px 6vw;

  overflow: hidden;

  font-family: "Poppins", sans-serif;
}


.pe-news-container {
  width: 100%;

  max-width: 1450px;

  margin: 0 auto;
}


/* =========================================================
   SECTION HEADER
========================================================= */

.pe-news-heading {
  display: flex;

  justify-content: space-between;

  align-items: flex-end;

  gap: 40px;

  margin-bottom: 55px;

  padding-bottom: 28px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.pe-news-eyebrow {
  display: block;

  margin-bottom: 16px;

  color: #d5a91f;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 4px;

  line-height: 1.5;

  text-transform: uppercase;
}


.pe-news-heading h2 {
  margin: 0;

  color: #ffffff;

  font-size: clamp(42px, 5vw, 72px);

  font-weight: 500;

  line-height: 0.98;

  letter-spacing: -2.5px;
}


/* VIEW ALL */

.pe-news-view-all {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding-bottom: 5px;

  color: #969696;

  text-decoration: none;

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 2px;

  border-bottom: 1px solid rgba(213, 169, 31, 0.5);

  transition: color 0.3s ease;
}


.pe-news-view-all b {
  color: #d5a91f;

  font-size: 18px;

  font-weight: 400;

  transition: transform 0.3s ease;
}


.pe-news-view-all:hover {
  color: #ffffff;
}


.pe-news-view-all:hover b {
  transform: translate(4px, -4px);
}


/* =========================================================
   FEATURED STORY
========================================================= */

.pe-featured-story {
  display: grid;

  grid-template-columns: minmax(0, 1.45fr) minmax(350px, 0.8fr);

  min-height: 500px;

  margin-bottom: 30px;

  border: 1px solid rgba(255, 255, 255, 0.10);

  background: #0b0b0b;

  transition:
    border-color 0.4s ease,
    transform 0.4s ease;
}


.pe-featured-story:hover {
  border-color: rgba(213, 169, 31, 0.42);

  transform: translateY(-3px);
}


/* =========================================================
   FEATURED IMAGE
========================================================= */

.pe-featured-media {
  position: relative;

  display: block;

  min-height: 500px;

  overflow: hidden;

  text-decoration: none;
}


.pe-featured-media img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  filter: brightness(0.72);

  transition:
    transform 0.9s cubic-bezier(.2, .7, .2, 1),
    filter 0.5s ease;
}


.pe-featured-story:hover .pe-featured-media img {
  transform: scale(1.045);

  filter: brightness(0.92);
}


/* IMAGE GRADIENT */

.pe-featured-media::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.72),
      rgba(0, 0, 0, 0.04) 55%,
      rgba(0, 0, 0, 0.15));

  pointer-events: none;
}


/* NUMBER */

.pe-story-number {
  position: absolute;

  z-index: 2;

  top: 24px;

  left: 26px;

  color: #ffffff;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: 3px;

  opacity: 0.85;
}


/* IMAGE ARROW */

.pe-media-arrow {
  position: absolute;

  z-index: 3;

  right: 25px;

  bottom: 24px;

  width: 48px;

  height: 48px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(213, 169, 31, 0.65);

  border-radius: 50%;

  color: #d5a91f;

  font-size: 19px;

  transition:
    background 0.35s ease,
    color 0.35s ease,
    transform 0.35s ease;
}


.pe-featured-story:hover .pe-media-arrow {
  background: #d5a91f;

  color: #080808;

  transform: rotate(45deg);
}


/* =========================================================
   FEATURED CONTENT
========================================================= */

.pe-featured-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 55px 55px 55px 60px;
}


.pe-story-meta {
  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

  margin-bottom: 24px;

  color: #d5a91f;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 2px;
}


.pe-featured-content h3 {
  max-width: 520px;

  margin: 0 0 22px;

  color: #ffffff;

  font-size: clamp(32px, 3.2vw, 52px);

  font-weight: 500;

  line-height: 1.1;

  letter-spacing: -1.5px;
}


.pe-featured-content p {
  max-width: 500px;

  margin: 0 0 35px;

  color: #858585;

  font-size: 14px;

  font-weight: 400;

  line-height: 1.85;
}


/* READ STORY */

.pe-read-story {
  display: inline-flex;

  align-items: center;

  align-self: flex-start;

  gap: 28px;

  padding-bottom: 8px;

  color: #ffffff;

  text-decoration: none;

  border-bottom: 1px solid #d5a91f;

  font-size: 9px;

  font-weight: 600;

  letter-spacing: 2px;

  transition: color 0.3s ease;
}


.pe-read-story b {
  color: #d5a91f;

  font-size: 17px;

  font-weight: 400;

  transition: transform 0.3s ease;
}


.pe-read-story:hover {
  color: #d5a91f;
}


.pe-read-story:hover b {
  transform: translateX(6px);
}


/* =========================================================
   SUPPORTING STORIES
========================================================= */

.pe-supporting-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 30px;
}


.pe-small-story {
  display: grid;

  grid-template-columns: 44% 56%;

  min-height: 245px;

  background: #0b0b0b;

  border: 1px solid rgba(255, 255, 255, 0.10);

  transition:
    border-color 0.4s ease,
    transform 0.4s ease;
}


.pe-small-story:hover {
  border-color: rgba(213, 169, 31, 0.42);

  transform: translateY(-3px);
}


/* =========================================================
   SMALL IMAGE
========================================================= */

.pe-small-media {
  position: relative;

  display: block;

  min-height: 245px;

  overflow: hidden;

  text-decoration: none;
}


.pe-small-media img {
  width: 100%;

  height: 100%;

  display: block;

  object-fit: cover;

  filter: brightness(0.70);

  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}


.pe-small-story:hover .pe-small-media img {
  transform: scale(1.06);

  filter: brightness(0.92);
}


/* SMALL IMAGE GRADIENT */

.pe-small-media::after {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(to top,
      rgba(0, 0, 0, 0.55),
      transparent 60%);
}


/* NUMBER */

.pe-small-number {
  position: absolute;

  z-index: 2;

  top: 18px;

  left: 20px;

  color: #ffffff;

  font-size: 10px;

  letter-spacing: 2px;
}


/* SMALL ARROW */

.pe-small-arrow {
  position: absolute;

  z-index: 2;

  right: 16px;

  bottom: 16px;

  width: 38px;

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 1px solid rgba(213, 169, 31, 0.55);

  border-radius: 50%;

  color: #d5a91f;

  font-size: 16px;

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}


.pe-small-story:hover .pe-small-arrow {
  background: #d5a91f;

  color: #080808;

  transform: rotate(45deg);
}


/* =========================================================
   SMALL CONTENT
========================================================= */

.pe-small-content {
  display: flex;

  flex-direction: column;

  justify-content: center;

  padding: 30px;
}


.pe-small-meta {
  display: flex;

  justify-content: space-between;

  gap: 12px;

  margin-bottom: 14px;

  color: #d5a91f;

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 1.7px;
}


.pe-small-content h3 {
  margin: 0 0 12px;

  color: #ffffff;

  font-size: 21px;

  font-weight: 500;

  line-height: 1.25;
}


.pe-small-content p {
  margin: 0 0 20px;

  color: #777777;

  font-size: 12px;

  line-height: 1.7;
}


.pe-small-read {
  display: inline-flex;

  align-items: center;

  align-self: flex-start;

  gap: 17px;

  padding-bottom: 6px;

  color: #ffffff;

  text-decoration: none;

  border-bottom: 1px solid rgba(213, 169, 31, 0.8);

  font-size: 8px;

  font-weight: 600;

  letter-spacing: 1.7px;

  transition: color 0.3s ease;
}


.pe-small-read span {
  color: #d5a91f;

  font-size: 15px;

  transition: transform 0.3s ease;
}


.pe-small-read:hover {
  color: #d5a91f;
}


.pe-small-read:hover span {
  transform: translateX(5px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

  .pe-news-section {
    padding: 95px 5vw;
  }


  .pe-featured-story {
    grid-template-columns: 1fr;

    min-height: auto;
  }


  .pe-featured-media {
    min-height: 420px;
  }


  .pe-featured-content {
    padding: 45px;
  }


  .pe-supporting-grid {
    grid-template-columns: 1fr;
  }


  .pe-small-story {
    min-height: 220px;
  }


  .pe-small-media {
    min-height: 220px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

  .pe-news-section {
    padding: 75px 22px;
  }


  .pe-news-heading {
    align-items: flex-start;

    margin-bottom: 35px;

    padding-bottom: 22px;
  }


  .pe-news-eyebrow {
    margin-bottom: 12px;

    font-size: 8px;

    letter-spacing: 2.5px;
  }


  .pe-news-heading h2 {
    font-size: 40px;

    letter-spacing: -1.5px;
  }


  .pe-news-view-all {
    display: none;
  }


  /* FEATURED */

  .pe-featured-media {
    min-height: 270px;
  }


  .pe-featured-content {
    padding: 32px 24px 38px;
  }


  .pe-story-meta {
    flex-direction: column;

    align-items: flex-start;

    gap: 7px;

    margin-bottom: 17px;
  }


  .pe-featured-content h3 {
    font-size: 30px;

    letter-spacing: -0.8px;
  }


  .pe-featured-content p {
    font-size: 13px;

    line-height: 1.75;
  }


  /* SUPPORTING STORIES */

  .pe-supporting-grid {
    grid-template-columns: 1fr;

    gap: 22px;
  }


  .pe-small-story {
    display: block;

    min-height: auto;
  }


  .pe-small-media {
    min-height: 230px;
  }


  .pe-small-content {
    padding: 25px 24px 30px;
  }


  .pe-small-content h3 {
    font-size: 21px;
  }


  .pe-small-content p {
    font-size: 12px;

    margin-bottom: 22px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

  .pe-news-section {
    padding-left: 18px;

    padding-right: 18px;
  }


  .pe-news-heading h2 {
    font-size: 36px;
  }


  .pe-featured-content {
    padding: 28px 20px 34px;
  }


  .pe-small-content {
    padding-left: 20px;

    padding-right: 20px;
  }

}

/*.................... contact us ..................... */


.rp-contact {
  --bg: #080808;
  --text: #f2f0eb;
  --muted: #8d8982;
  --gold: #c4a05a;
  --line: rgba(255, 255, 255, 0.12);

  background: var(--bg);
  color: var(--text);
  /* padding: 0px 8vw; */
  position: relative;
  overflow: hidden;
}

.rp-contact::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  right: -220px;

  border-radius: 50%;
  background: rgba(196, 160, 90, 0.04);
  filter: blur(100px);
  pointer-events: none;
}

.rp-contact-inner {
  max-width: 1250px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.rp-contact-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}

.rp-contact-eyebrow-line {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.rp-contact-eyebrow span {
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

.rp-contact-heading {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: end;
  padding-bottom: 65px;
  border-bottom: 1px solid var(--line);
}

.rp-contact-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -4px;
}



.rp-contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 65px;
}

.rp-contact-item {
  padding-right: 55px;
}

.rp-contact-item+.rp-contact-item {
  padding-left: 55px;
  border-left: 1px solid var(--line);
}

.rp-contact-number {
  margin-bottom: 30px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--gold);
}

.rp-contact-label {
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.rp-contact-value {
  font-size: clamp(15px, 2.2vw, 14px);
  line-height: 1.4;
  color: var(--text);
  text-decoration: none;
  transition: color .3s ease;
}

a.rp-contact-value:hover {
  color: var(--gold);
}

.rp-contact-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 95px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.rp-contact-footer span {
  font-family: Arial, sans-serif;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #65615b;
}

@media (max-width: 768px) {

  .rp-contact {
    padding: 75px 25px;
  }

  .rp-contact-heading {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 45px;
  }

  .rp-contact-heading h2 {
    font-size: clamp(50px, 15vw, 75px);
    letter-spacing: -2px;
  }

  .rp-contact-details {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .rp-contact-item {
    padding: 0 0 42px;
  }

  .rp-contact-item+.rp-contact-item {
    padding: 42px 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .rp-contact-number {
    margin-bottom: 20px;
  }

  .rp-contact-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-top: 65px;
  }
}

.rp-future-section {
  color: #aaa;
  padding: 90px 7vw 85px;
}

.rp-future-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}


/* =========================================
   SECTION HEADER
   ========================================= */

.rp-future-header {
  text-align: center;
  margin-bottom: 55px;
}

.rp-future-header h2 {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 3.5vw, 45px);
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #f5f5f5;
}

.rp-future-header-line {
  width: 55px;
  height: 2px;
  margin: 14px auto 0;
  background: #b59435;
}


/* =========================================
   MAIN LAYOUT
   ========================================= */

.rp-future-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, .75fr);
  gap: 55px;
  align-items: start;
}


/* =========================================
   LEFT CONTENT
   ========================================= */

.rp-future-copy {
  position: relative;
  padding-right: 10px;
}

.rp-future-copy::before {
  content: "";
  position: absolute;
  left: -22px;
  top: 4px;
  width: 2px;
  height: 55px;
  background: #b59435;
}


/* =========================================
   SUB CONTENT BLOCKS
   ========================================= */

.rp-future-block {
  margin-bottom: 42px;
}

.rp-future-block:last-child {
  margin-bottom: 0;
}

.rp-future-block h3 {
  margin: 0 0 15px;

  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;

  color: #f2f2f2;
  letter-spacing: 0.2px;
}

.rp-future-block p {
  margin: 0;

  font-size: 14px;

  color: #aaa;
  text-align: justify;
}


/* =========================================
   IMAGE
   ========================================= */

.rp-future-image {
  position: relative;
  overflow: hidden;
}

.rp-future-image img {
  width: 100%;
  height: 310px;

  display: block;
  object-fit: cover;

  filter: saturate(.8) contrast(1.02);

  transition: transform .5s ease;
}

.rp-future-image:hover img {
  transform: scale(1.025);
}

.rp-future-image::after {
  content: "";
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  height: 3px;
  background: #b59435;
}


/* =========================================
   IMAGE CAPTION
   ========================================= */

.rp-future-caption {
  margin-top: 12px;

  font-size: 9px;
  letter-spacing: 1.8px;
  text-transform: uppercase;

  color: #77736d;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 900px) {

  .rp-future-section {
    padding: 75px 5vw;
  }

  .rp-future-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rp-future-copy {
    padding-right: 0;
  }

  .rp-future-image {
    max-width: 650px;
    width: 100%;
    margin: 0 auto;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 600px) {

  .rp-future-section {
    padding: 60px 22px;
  }

  .rp-future-header {
    margin-bottom: 40px;
  }

  .rp-future-header h2 {
    font-size: 30px;
  }

  .rp-future-copy {
    padding-left: 0;
  }

  .rp-future-copy::before {
    left: -12px;
    height: 42px;
  }

  .rp-future-block {
    margin-bottom: 35px;
  }

  .rp-future-block h3 {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .rp-future-block p {
    font-size: 14px;
    line-height: 1.85;
    text-align: left;
  }

  .rp-future-image img {
    height: 250px;
  }

}


/* =========================
  PROFILE
========================= */

.about-section,
.journey-section {
  background: #080808;
  color: #f5f2eb;
  font-family: "Poppins", sans-serif;
}

.about-section *,
.journey-section * {
  box-sizing: border-box;
}


/* =========================
   ABOUT SECTION
========================= */

.about-section {
  padding: 120px 8%;
  overflow: hidden;
}

.about-content {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 100px;
}


/* Text */

.section-label {
  display: inline-block;

  color: #c7a348;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;

  margin-bottom: 22px;
}

.about-text h2 {
  font-size: clamp(30px, 5vw,50px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2px;

  margin: 0 0 30px;
}

.about-text h2 span,
.journey-header h2 span {
  color: #c7a348;
}

.about-text p {
  max-width: 650px;

  color: #a9a6a0;
  font-size: 15px;
  line-height: 1.9;

  margin-bottom: 18px;
}


/* Button */

.about-btn {
  display: inline-flex;
  align-items: center;
  gap: 20px;

  margin-top: 25px;
  padding: 14px 24px;

  color: #080808;
  background: #c7a348;

  text-decoration: none;
  font-size: 13px;
  font-weight: 600;

  transition: 0.3s ease;
}

.about-btn span {
  font-size: 20px;
}

.about-btn:hover {
  background: #e0bd62;
  transform: translateY(-3px);
}


/* Image */

.about-image {
  position: relative;
  min-height: 560px;

  display: flex;
  align-items: flex-end;
  justify-content: center;

  /* background: #111; */
}

.about-image img {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 500px;
  height: auto;

  object-fit: contain;
}


/* Gold frame */

.image-frame1 {
  position: absolute;

  width: 82%;
  height: 82%;
/* 
  border: 1px solid rgba(199, 163, 72, 0.5); */

  top: 9%;
  left: 9%;
}


/* =========================
   JOURNEY
========================= */

.journey-section {
  padding: 140px 8%;

  border-top: 1px solid #191919;
}

.journey-header {
  max-width: 850px;
  margin: 0 auto 100px;

  text-align: center;
}

.journey-header h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.05;
  font-weight: 500;
  letter-spacing: -2px;

  margin: 0 0 25px;
}

.journey-header p {
  color: #999;
  font-size: 15px;
  line-height: 1.8;
}


/* =========================
   TIMELINE
========================= */

.timeline {
  position: relative;

  max-width: 1050px;
  margin: auto;
}


/* vertical line */

.timeline::before {
  content: "";

  position: absolute;

  top: 0;
  bottom: 0;
  left: 180px;

  width: 1px;

  background: linear-gradient(to bottom,
      transparent,
      #c7a348,
      #c7a348,
      transparent);
}


.timeline-item {
  position: relative;

  display: grid;
  grid-template-columns: 150px 60px 1fr;

  min-height: 190px;
}


/* Year */

.timeline-year {
  padding-top: 4px;

  color: #c7a348;

  font-size: 20px;
  font-weight: 500;
}


/* Dot */

.timeline-dot {
  position: relative;
  z-index: 2;

  width: 13px;
  height: 13px;

  margin-top: 7px;
  margin-left: 24px;

  border-radius: 50%;

  background: #c7a348;

  box-shadow:
    0 0 0 7px #080808,
    0 0 20px rgba(199, 163, 72, 0.4);
}


/* Content */

.timeline-content {
  padding-left: 30px;
  padding-bottom: 60px;
}

.timeline-content span {
  color: #777;

  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
}

.timeline-content h3 {
  margin: 10px 0 12px;

  color: #f5f2eb;

  font-size: 25px;
  font-weight: 500;
}

.timeline-content p {
  max-width: 650px;

  margin: 0;

  color: #999;

  font-size: 14px;
  line-height: 1.8;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  .about-section {
    padding: 80px 6%;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image {
    max-width: 550px;
    margin: auto;
    width: 100%;
  }

  .journey-section {
    padding: 90px 6%;
  }
}


@media (max-width: 600px) {

  .about-text h2,
  .journey-header h2 {
    letter-spacing: -1px;
  }

  .about-image {
    min-height: 430px;
  }

  .timeline::before {
    left: 8px;
  }

  .timeline-item {
    display: block;
    padding-left: 35px;
    min-height: auto;
  }

  .timeline-year {
    margin-bottom: 12px;
  }

  .timeline-dot {
    position: absolute;
    left: 2px;
    top: 2px;

    margin: 0;
  }

  .timeline-content {
    padding-left: 0;
    padding-bottom: 55px;
  }

  .timeline-content h3 {
    font-size: 21px;
  }
}


/* =========================================
   MAIN
========================================= */

.film-vision-mission {
  position: relative;
  width: 100%;

  background: #050505;
  color: #f5f5f5;

  overflow: hidden;
}


/* =========================================
   VISION
========================================= */

.film-section {
  position: relative;

  max-width: 1500px;
  margin: auto;
}


.film-section--vision {

  display: flex;
  align-items: flex-start;
  justify-content: center;

  text-align: center;
}


/* =========================================
   CAMERA SCROLL AREA
========================================= */

.film-camera-scroll {

  position: relative;

  /*
       This creates enough scrolling distance
       for the camera to rotate with the scroll.
    */

  /* height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
}


/* =========================================
   CAMERA
========================================= */

.film-camera {

  position: sticky;

  top: 50%;
  left: 30%;

  width: min(420px, 65vw);

  transform: translateY(-50%);

  z-index: 10;

  display: flex;

  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;

}

.film-camera img {
  width: 100%;
  height: auto;
  display: block;

  filter:
    grayscale(100%) contrast(115%) brightness(.85);

  transform: rotate(0deg);

  /*
       IMPORTANT:
       No transition.
       So the camera changes direction instantly.
    */
  transition: none;
}



/* =========================================
   MISSION
========================================= */

.film-section--mission {



  display: flex;
  align-items: flex-start;
  justify-content: center;

  text-align: center;
  margin-bottom: 45px;

}


/* =========================================
   TEXT
========================================= */

.film-section__content {

  position: relative;

  z-index: 5;

  width: min(1000px, 100%);
}


.film-section h2 {

  margin: 40px 0;

  font-size: clamp(20px, 10vw, 80px);

  line-height: .8;

  font-weight: 400;

  letter-spacing: -8px;

  text-transform: uppercase;
}


.film-copy {

  width: min(900px, 90%);

  margin: auto;

  text-align: left;
}


.film-copy p {

  color: #92928e;

  font-size: 14px;

  line-height: 1.9;

  font-weight: 300;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

  .film-section {

    padding: 40px 20px;
  }

  /* .film-section--vision,
    .film-section--mission {

        min-height: 100vh;
    } */

  /* .film-camera-scroll {

        height: 70vh;
    } */

  .film-camera {

    width: 85vw;
  }

  .film-camera {

    left: 35px;
  }

  .film-section h2 {

    font-size: 22vw;

    letter-spacing: -5px;
  }

  .film-copy {

    width: 100%;
  }

  .film-copy p {

    font-size: 13px;

    line-height: 1.8;
  }

}




/* =========================================
   PROGRAMME SECTION
========================================= */

.programme-section {
    position: relative;
    width: 100%;
    padding: 80px 35px 120px;
    color: #ffffff;
    overflow: hidden;
}

/* subtle background glow */

.programme-section::before {
    content: "";
    position: absolute;
    top: 10%;
    left: 50%;
    width: 650px;
    height: 650px;
    transform: translateX(-50%);
    background: radial-gradient(
        circle,
        rgba(201, 162, 39, 0.055) 0%,
        rgba(201, 162, 39, 0.018) 35%,
        transparent 70%
    );
    pointer-events: none;
}

.programme-container {
    position: relative;
   
    max-width: 1250px;
    margin: 0 auto;
}


/* =========================================
   HEADING
========================================= */

.programme-heading {
    max-width: 900px;
    margin: 0 auto 70px;
    text-align: center;
}

.programme-kicker {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    margin-bottom: 18px;

    color: #c9a227;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.programme-kicker span {
    width: 35px;
    height: 1px;
    background: #c9a227;
    opacity: 0.8;
}

.programme-heading h2 {
    margin: 0;

    font-size: clamp(28px, 5vw, 28px);
    line-height: 1;
    font-weight: 500;
    letter-spacing: 2px;

    color: #f5f5f5;
   font-family: 'Samsung Sharp Sans';
}

.programme-subtitle {
    margin: 20px 0 20px;

    color: #c9a227;

    font-size: clamp(18px, 2vw, 16px);
    line-height: 1.4;
    font-weight: 400;
    font-family: 'Samsung Sharp Sans';
}

.programme-intro {
    max-width: 780px;
    margin: 0 auto;

    color: #a8a8a8;

    font-size: 15px;
    line-height: 1.8;
    font-weight: 400;
}


/* =========================================
   GRID
========================================= */

.programme-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;

    background: rgba(255, 255, 255, 0.16);

    border: 1px solid rgba(255, 255, 255, 0.16);
}


/* =========================================
   PROGRAMME ITEM
========================================= */

.programme-item {
    position: relative;

    min-height: 340px;
    padding: 38px 42px 42px;

    background: #070707;

    display: flex;
    flex-direction: column;

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.programme-item:hover {
    background: #0c0c0c;
}


/* number */

.programme-number {
    margin-bottom: 42px;

    color: #c9a227;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
}


/* content */

.programme-content {
    padding-right: 30px;
}

.programme-label {
    display: block;

    margin-bottom: 13px;

    color: #777777;

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.programme-content h3 {
    margin: 0 0 17px;

    color: #eeeeee;

    font-size: clamp(20px, 2vw, 25px);
    line-height: 1.3;
    font-weight: 500;
}

.programme-content p {
    margin: 0;

    max-width: 520px;

    color: #9d9d9d;

    font-size: 14px;
    line-height: 1.8;
    font-weight: 400;
}

.programme-content em {
    color: #c9a227;
    font-style: normal;
}

.programme-content strong {
    color: #c8c8c8;
    font-weight: 500;
}


/* =========================================
   ARROW
========================================= */

.programme-arrow {
    position: absolute;

    right: 35px;
    bottom: 32px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(201, 162, 39, 0.45);
    border-radius: 50%;

    color: #c9a227;

    font-size: 17px;

    opacity: 0.55;

    transition:
        opacity 0.35s ease,
        transform 0.35s ease,
        background 0.35s ease;
}

.programme-item:hover .programme-arrow {
    opacity: 1;
    transform: translate(4px, -4px);
    background: rgba(201, 162, 39, 0.08);
}


/* =========================================
   FEATURED LAST ITEM
========================================= */

.programme-featured {
    background:
        linear-gradient(
            135deg,
            rgba(201, 162, 39, 0.06),
            rgba(7, 7, 7, 1) 55%
        );
}

.programme-featured .programme-number {
    color: #d6b238;
}


/* =========================================
   RESPONSIVE — TABLET
========================================= */

@media (max-width: 900px) {

    .programme-section {
        padding: 90px 25px 90px;
    }

    .programme-heading {
        margin-bottom: 55px;
    }

    .programme-grid {
        grid-template-columns: 1fr;
    }

    .programme-item {
        min-height: auto;
        padding: 35px 35px 40px;
    }

}


/* =========================================
   RESPONSIVE — MOBILE
========================================= */

@media (min-width: 1800px) {

    .programme-container {
        max-width: 1550px;
    }

    .programme-section {
        padding-left: 40px;
        padding-right: 40px;
    }

    .programme-heading {
        max-width: 1100px;
    }

    .programme-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

    .programme-item {
        min-height: 400px;
    }

}

@media (max-width: 600px) {

    .programme-section {
        padding: 75px 18px 80px;
    }

    .programme-heading {
        margin-bottom: 42px;
    }

    .programme-kicker {
        font-size: 9px;
        letter-spacing: 2px;
        gap: 10px;
    }

    .programme-kicker span {
        width: 24px;
    }

    .programme-heading h2 {
        font-size: 38px;
        letter-spacing: 1px;
    }

    .programme-subtitle {
        margin-top: 16px;
        font-size: 17px;
    }

    .programme-intro {
        font-size: 13px;
        line-height: 1.75;
    }

    .programme-grid {
        border-color: rgba(255, 255, 255, 0.13);
    }

    .programme-item {
        padding: 27px 24px 32px;
    }

    .programme-number {
        margin-bottom: 28px;
        font-size: 13px;
    }

    .programme-content {
        padding-right: 0;
    }

    .programme-label {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .programme-content h3 {
        font-size: 20px;
        line-height: 1.35;
        margin-bottom: 13px;
    }

    .programme-content p {
        font-size: 13px;
        line-height: 1.75;
    }

    .programme-arrow {
        position: relative;

        right: auto;
        bottom: auto;

        margin-top: 25px;

        width: 34px;
        height: 34px;

        font-size: 15px;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .programme-section {
        padding-left: 14px;
        padding-right: 14px;
    }

    .programme-heading h2 {
        font-size: 34px;
    }

    .programme-subtitle {
        font-size: 16px;
    }

    .programme-item {
        padding: 25px 20px 28px;
    }

}
