.press-page {
  min-height: 70vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.press-box {
  max-width: 700px;
  text-align: center;

  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border-radius: 32px;
  padding: 70px 50px;
}

.press-icon {
  font-size: 2rem;
  color: #a97142;
  margin-bottom: 24px;

  animation: pulsePress 3s ease-in-out infinite;
}

.press-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #f5ead2;
  margin-bottom: 16px;
}

.press-text.secondary {
  color: rgba(245,234,210,0.75);
}

.press-mail {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;

  border-radius: 999px;
  border: 1px solid rgba(169,113,66,0.5);

  color: #f5ead2;
  text-decoration: none;
  font-weight: 700;

  transition: all 0.25s ease;
}

.press-mail:hover {
  transform: translateY(-2px);
  background: rgba(169,113,66,0.12);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

@keyframes pulsePress {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}


@media (max-width: 768px) {

  .press-page {
    min-height: auto;
    display: block;
    padding: 25px 15px 10px;
  }

  .press-box {
    width: 100%;
    padding: 18px 14px;
    border-radius: 16px;
    text-align: center;
  }

  .press-icon {
    text-align: center;
    margin-bottom: 18px;
  }

  .press-box .page-title {
    font-size: 2.3rem;
    text-align: center;
    margin: 0 0 28px;
  }

  .press-text {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .press-mail {
    width: 100%;
    text-align: center;
    margin-top: 22px;
    padding: 15px 18px;
  }
}