.title{
  display: flex;
  justify-content: space-between;
  font-size: max(20px, 2rem);
  font-weight: bold;
  margin-bottom: max(16px, 2rem);
  line-height: 1;
}
.title span {
  color: var(--themeColor);
  padding-bottom: max(10px, 1rem);
  border-bottom: 1px solid var(--activeColor);
}
.title img{
  width: max(18px, 1.5rem);
  height: auto;
  object-fit: contain;
}
.periodical{
  padding: 3.75rem 15px;
}
.periodical-list{
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
}
.periodical-item{
  width: 23.5%;
  color: var(--themeColor);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.periodical-item .periodical-image{
  width: 100%;
  height: max(210px,30rem);
  object-fit: cover;
}
.periodical-date, .periodical-title{
  margin-top: 12px;
  font-size: max(16px, 1.25rem);
  line-height: 1;
}

.loadMore{
  padding: 2rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.loadMore-text{
  margin-right: 8px;
  color: var(--themeColor);
}
.loadMore .spinner{
  width: 20px;
  height: 20px;
  color: var(--activeColor);
}
@media (hover: hover){
  .periodical-item:hover{
    transform: translateY(-10px);
  }
}
@media screen and (max-width:986px){
  .periodical-item{
    width: 32%;
  }
  .periodical-list{
    gap: 12px;
  }
}
@media screen and (max-width:768px){
  .periodical-item{
    width: 48%;
  }
}