.album-wrap {
    margin-bottom: 24px;
}

.album-img {
    margin-bottom: 10px;
}

.album-img img:hover {
    box-shadow: 6px 6px 6px 0px #668a44 !important;
}

.album-img img {
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.5) !important;
    transition: box-shadow 0.3s ease;
}

.album-title a {
    color: #fff;
    font-weight: 600;
}

.album-title a:hover {
    color: #b8d231;
}

.album-inner {
    position: relative;
}

.album-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px;
    color: #fff;
    transition: all 0.3s ease;
    height: 60px;
    text-align: center;
}
@media (max-width: 767px) {
  /* .album-inner{
    width: 364px;
  } */
  .album-wrap{
    display: flex;
    justify-content: center;
  }
  .album-info{
    bottom: 10px;
  }
}