/* ===============================
   POWERLIFTING SECTION
=================================*/
.powerlifting-section {
  width: 100%;
  background: #e9e9e9;
  padding: 90px 0;
}

.pl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


.video-wrapper {
  position: relative;
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.video-wrapper video {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
/* ===============================
   TOP GRID
=================================*/
.pl-top-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.pl-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 14px;
  color: #222;
}

.pl-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #444;
}

.pl-left p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 18px;
}

/* ===============================
   VIDEO CARD
=================================*/
.pl-video-card {
  /* background: #5a5a5a; */
  padding: 40px 20px;
  text-align: center;
}

.video-wrapper {
  position: relative;
}

.video-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.video-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
}

.video-name {
  margin-top: 20px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
}

/* ===============================
   IMAGE ROWS
=================================*/
.pl-row {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.pl-row img {
  width: 100%;
  height: 460px;
  /* object-fit: cover; */
  display: block;
}

.pl-row-3 img {
  height: 380px;        /* different height */
  object-fit: cover;    /* proper cropping */
  border-radius: 12px;  /* optional styling */
}

/* 2 column */
.pl-row-2 {
  grid-template-columns: repeat(2, 1fr);
}

/* 3 column */
.pl-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ===============================
   BOTTOM GRID (FIXED LAYOUT)
=================================*/
.pl-bottom-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin-top: 60px;
  align-items: start;
}

/* LEFT SIDE - BIG CERTIFICATE */
.pl-certificates {
  display: block;
}

.pl-certificates img:first-child {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* RIGHT SIDE */
.pl-reflection {
  display: flex;
  flex-direction: column;
  /* gap: 30px; */
}

/* SMALL CERTIFICATE (move into reflection area visually) */
.pl-reflection::before {
  content: "";
  display: block;
}

/* Small certificate styling */
.pl-reflection img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Text Styling */
.pl-reflection h3 {
  font-size: 24px;
  margin: 0;
  color: #333;
}

.pl-reflection p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}
/* ===============================
   BUTTONS
=================================*/
.pl-buttons {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.pl-btn {
  background: #333;
  color: #fff;
  padding: 12px 40px;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.pl-btn:hover {
  background: #111;
}

.pl-btn.active {
  background: #000;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 992px) {

  .pl-top-grid {
    grid-template-columns: 1fr;
  }

  .pl-row-3 {
    grid-template-columns: 1fr 1fr;
  }

  .pl-bottom-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 600px) {

  .pl-row-2,
  .pl-row-3 {
    grid-template-columns: 1fr;
  }

  .pl-video-card {
    padding: 20px;
  }

}