.pickup-section {
  padding: 40px 0 0;
  background-color: #fff;
  margin-bottom: 4em;
}

.pickup-section > .container {
  width: 70%;
  max-width: 70%;
}

.pickup-section .pickup-heading {
  font-family: 'Open Sans', 'Lato', sans-serif;
  text-align: center;
  font-size: 2.4em;
  letter-spacing: 0.08em;
  margin: 0 0 32px;
  color: #565656;
}

.pickup-swiper {
  position: relative;
  padding-bottom: 0;
}

.pickup-swiper .swiper-wrapper {
  align-items: stretch;
}

.pickup-swiper .swiper-slide {
  height: auto;
}

.pickup-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s, transform 0.2s;
}

.pickup-card:hover,
.pickup-card:focus {
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.pickup-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #f0f0f0;
  overflow: hidden;
}

.pickup-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px 4px;
}

.pickup-category {
  display: inline-block;
  padding: 3px 12px;
  font-size: 0.75em;
  font-weight: bold;
  color: #fff;
  background-color: #6191da;
  border-radius: 2px;
  white-space: nowrap;
}

.pickup-category.news_release-pressrelease,
.pickup-category.pressrelease {
  background-color: #31e6b9;
}

.pickup-category.news_release-news,
.pickup-category.news {
  background-color: #6191da;
}

.pickup-category.news_release-recruit,
.pickup-category.recruit {
  background-color: #ff8792;
}

.pickup-category.radio,
.pickup-category.news_media {
  background-color: #f5a623;
}

.pickup-date {
  font-size: 0.85em;
  color: #888;
}

.pickup-card-title {
  margin: 0;
  padding: 8px 16px 18px;
  font-size: 0.95em;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pickup-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 24px;
  margin-bottom: 0;
}

.pickup-controls .pickup-pagination {
  position: static !important;
  width: auto !important;
  flex: 0 0 auto;
  margin: 0 16px;
  bottom: auto !important;
  left: auto !important;
}

.pickup-prev,
.pickup-next {
  width: 40px;
  height: 26px;
  padding: 0;
  border: 1px solid #d8d8d8;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: background-color 0.15s, border-color 0.15s;
}

.pickup-prev:hover,
.pickup-next:hover {
  background-color: #f7f7f7;
  border-color: #a0a0a0;
}

.pickup-prev::before,
.pickup-next::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
}

.pickup-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.pickup-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.pickup-prev.swiper-button-disabled,
.pickup-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.pickup-pagination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  position: static;
}

.pickup-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 5px !important;
  background-color: #cfcfcf;
  opacity: 1;
  transition: background-color 0.15s;
}

.pickup-pagination .swiper-pagination-bullet-active {
  background-color: #4a4a4a;
}

@media only screen and (max-width: 767px) {
  .pickup-section {
    padding: 28px 0 0;
    margin-bottom: 2em;
  }

  .pickup-section > .container {
    width: auto;
    max-width: none;
  }

  .pickup-section .pickup-heading {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .pickup-card-title {
    font-size: 0.9em;
  }

  .pickup-controls {
    margin-top: 16px;
    gap: 0;
  }
}
