/* =================================================
   File Icon Linker - Front Style
================================================= */

.fil-list{
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0 0 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.fil-list__title{
  padding: 0 0 12px;
  font-weight: 800;
  border-bottom: 0;
}

.fil-list__items{
  display: block;
}

.fil-list .fil-card{
  border: none;
  border-radius: 0;
  background: transparent;
  margin: 0;
  padding: 10px 0;
  position: relative;
}

.fil-list .fil-card::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e6e8ee;
}

.fil-list .fil-card:last-child::after{
  display: none;
}

.fil-card{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  gap: 0;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  margin: 0 0 8px;
}

.fil-card__left{
  flex: 1;
  min-width: 0;
}

.fil-card__right{
  display: none;
}

.fil-card__mainrow{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  min-width: 0;
}

.fil-card__icon{
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-top: 2px;
}

.fil-iconimg{
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
}

.fil-card__texts{
  min-width: 0;
  flex: 1;
}

.fil-card__titleRow{
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.fil-card__titleRow .fil-card__link{
  flex: 0 1 auto;
  min-width: 0;
}

.fil-card__link{
  display: inline-block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.fil-card__link:hover{
  text-decoration: underline;
}

.fil-card__title{
  display: block;
  font-size: 0.8rem;
  line-height: 1.5;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fil-card__meta{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  font-size: 0.5rem;
  opacity: 0.72;
  flex-wrap: wrap;
}

.fil-card__type{
  display: inline-block;
  padding: 2px 8px;
  border: 1px solid #d9dde6;
  border-radius: 999px;
  background: #f7f8fa;
  color: #5f6777;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.fil-card__sizeInline{
  display: inline-block;
  white-space: nowrap;
}

.fil-card__size{
  display: none;
}

.fil-card__btn,
.fil-card__btnText,
.fil-card__btnArrow{
  display: none !important;
}

.fil-card__note{
  font-size: 12px;
  opacity: 0.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.fil-card__noteInline{
  flex: 1 1 auto;
  min-width: 0;
  font-size: 12px;
  opacity: 0.8;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.red{
  color: red;
}

@media (max-width: 640px){
  .fil-card{
    padding: 8px 0;
  }

  .fil-card__mainrow{
    gap: 7px;
  }

  .fil-card__icon,
  .fil-iconimg{
    width: 32px;
    height: 32px;
  }

  .fil-card__title{
    font-size: 15px;
    line-height: 1.45;
  }

  .fil-card__meta{
    gap: 8px;
    font-size: 11px;
  }
}