/* 媒体图标简洁样式 */

/* 媒体图标容器 */
.media-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 0.5em;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* 媒体图标图片 */
.media-logo img {
  max-width: 110px;
  width: 90%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.media-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* 响应式设计 - Pure CSS 网格类 */
.pure-u-lg-1-7 {
  width: 14.2857%;
}

@media screen and (min-width: 1024px) {
  .media-logo img {
    max-width: 120px;
    max-height: 70px;
  }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
  .media-logo img {
    max-width: 100px;
    max-height: 60px;
  }
}

@media screen and (max-width: 767px) {
  .media-logo img {
    max-width: 90px;
    max-height: 50px;
  }
}

@media screen and (max-width: 480px) {
  .media-logo img {
    max-width: 80px;
    max-height: 45px;
  }
}

/* 简洁的标题样式 */
.featured-text {
  color: #444;
  margin-bottom: 1em;
  font-weight: normal;
}