.press-section {
    margin: 60px auto;
}

.press-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.press-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.press-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.press-nav-btn {
background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    color: #3e407a;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    z-index: 10;
}

.press-controls .next:hover, .press-controls .prev:hover {
    background: #3e407a;
    color: white;
}

.press-nav-btn:hover:not(:disabled) {
    background: #3e407a;
    color: white;
}

.press-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: #f0f0f0;
    border-color: #ccc;
}

.read-all-btn {
    background: #3e407a;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 14px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 3px solid #000;
    box-shadow: 3px 3px 0 #000 !important;
}

.read-all-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}

.press-carousel-container {
    overflow: hidden;
}

.press-carousel {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

.press-card {
    flex: 0 0 calc(25% - 15px);
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.press-card:hover {
    transform: translateY(-8px);
}

.press-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.press-card-image {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
}

.press-placeholder {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.press-card-content {
    padding: 25px 0 0;
}

.press-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.press-tag {
background: #2C5F9F;
color: white;
padding: 6px 14px;
border-radius: 20px;
font-size: 11px;
letter-spacing: 0;
font-weight: 500;
}

.press-tag:nth-child(2) {
    background: #7c3aed;
}

.press-card-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.4;
    margin: 0;
    color: #000;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .press-card {
        flex: 0 0 calc(33.333% - 14px);
    }
}

@media (max-width: 768px) {
    .press-header {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .press-title {
        font-size: 2rem;
    }

    .press-card {
        flex: 0 0 calc(50% - 10px);
    }

    .press-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .press-card {
        flex: 0 0 100%;
    }

    .press-controls {
        width: 100%;
        justify-content: space-between;
    }
}


/* Grid wrapper */
.press-page-list .press-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* Mobile default */
  gap: 30px;
}

/* Tablet */
@media (min-width: 768px) {
  .press-page-list .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .press-page-list .press-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Article card */
.press-page-list .press-article {
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.press-page-list .press-article:hover {
  transform: translateY(-4px);
}

.press-page-list .press-thumb img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    border-radius: 25px;
}

.press-page-list .press-content {
  padding: 15px;
}

.press-page-list .press-tags {
  margin-bottom: 10px;
}

.press-page-list .press-tag {
  display: inline-block;
  background: #f2f2f2;
  padding: 3px 8px;
  margin-right: 5px;
  border-radius: 4px;
  font-size: 12px;
  color: #333;
}

.press-page-list .press-title {
  font-size: 18px;
  margin: 0;
  line-height: 1.4;
}

.press-page-list .press-excerpt {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
    line-height: 1.4;
}

.press-page-list .press-date {
    font-size: 12px;
    color: #999;
}
