/* Press Release Section */
.press-release {
  padding: 50px 0;

  .press-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;

    &:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    }

    .press-img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .press-content {
      padding: 20px;

      h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
      }

      .date {
        font-size: 14px;
        color: #999;
        margin-bottom: 15px;
      }

      p {
        font-size: 16px;
        color: #555;
        margin-bottom: 15px;
      }

      .read-more {
        font-size: 14px;
        color: #DEAD3C;
        font-weight: bold;
        text-decoration: none;
        transition: color 0.3s;

        &:hover {
          color: #b1701b;
        }
      }
    }
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .press-card .press-img {
    height: 180px;
  }
}

.press-card {
    border: 1px solid #ddd; /* Light gray border */
    border-radius: 8px;     /* Rounded corners */
    padding: 15px;
    transition: transform 0.2s, box-shadow 0.2s;
    background-color: #fff;
}

.press-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.press-img {
    max-height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.press-content h3 {
    margin-top: 0;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    color: #007bff;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}
