.press-section {
  font-family: 'Courier Prime', monospace;
  color: #fff;
}

.source-tag {
  font-size: 16px;
  letter-spacing: 2px;
}

.press-title {
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.press-desc {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.6;
  max-width: 500px;
}

/* Image Wrapper */
.press-img-wrapper {
  overflow: hidden;
  border: 1px solid #333; /* Subtle border for definition */
}

.press-img-wrapper img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}

.press-img-wrapper:hover img {
  transform: scale(1.05);
}

/* Red Button */
.btn-red-press {
  background: #EE2E3C;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 12px 25px;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-shadow: 0 0 10px #fff, 0 0 30px #fff;
  transition: all 0.3s ease;
}

.btn-red-press:hover {
  background: #ff3b4a;
  color: #fff;
  box-shadow: 0 0 15px rgba(238, 46, 60, 0.4);
  transform: translateY(-2px);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .press-title {
    font-size: 1.6rem;
  }
  .press-desc {
    max-width: 100%;
  }
}