@charset "utf-8";

.ps-content-main {
  padding: 30px;
}

.ps-study-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ps-study-item {
  margin: 0 0 24px;
}

.ps-study-item:last-child {
  margin-bottom: 0;
}

.ps-study-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 24px;
  background: linear-gradient(270deg, rgba(232, 242, 255, 0.5) 0%, rgba(215, 232, 255, 0.5) 100%);
  color: var(--color-primary-2);
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: background 0.2s ease, transform 0.2s ease;
}

.ps-study-item:hover .ps-study-link {
  background: linear-gradient(270deg, rgba(232, 242, 255, 0.78) 0%, rgba(215, 232, 255, 0.78) 100%);
  transform: translateX(4px);
}

.ps-study-item:focus-within .ps-study-link {
  background: linear-gradient(270deg, rgba(232, 242, 255, 0.78) 0%, rgba(215, 232, 255, 0.78) 100%);
  outline: 2px solid rgba(31, 88, 150, 0.35);
  outline-offset: 2px;
  transform: translateX(4px);
}

.ps-study-title {
  min-width: 0;
  flex: 1 1 auto;
  color: var(--color-primary-2);
  font-size: 20px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ps-study-title a {
  display: inline-block;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  vertical-align: top;
}

.ps-study-title a:hover {
  text-decoration: none;
}

.ps-study-date {
  flex: 0 0 auto;
  margin-left: 24px;
  color: #788393;
  font-family: "D-DIN Exp", "DIN", Arial, sans-serif;
  font-size: 20px;
  line-height: 24px;
  white-space: nowrap;
}

@media (max-width: 960px) {
  .ps-content-main {
    padding: 28px;
  }

  .ps-study-link {
    padding: 22px;
  }
}

@media (max-width: 720px) {
  .ps-content-main {
    padding: 24px 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  .ps-study-item {
    margin-bottom: 18px;
  }

  .ps-study-link {
    min-height: 56px;
    padding: 14px 16px;
  }

  .ps-study-title,
  .ps-study-date {
    font-size: 16px;
  }

  .ps-study-date {
    line-height: 22px;
  }
}

@media (max-width: 540px) {
  .ps-content-main {
    padding: 22px 16px;
    font-size: 13px;
    line-height: 1.65;
  }

  .ps-study-link {
    align-items: center;
    flex-direction: row;
    gap: 12px;
    min-height: 50px;
    padding: 12px 14px;
  }

  .ps-study-title {
    font-size: 15px;
    white-space: nowrap;
  }

  .ps-study-date {
    margin-left: auto;
    font-size: 14px;
    line-height: 1.35;
  }
}
