.learning-entry-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc(100% - 40px);
  min-height: 88px;
  box-sizing: border-box;
  margin: 18px 20px 20px;
  border: 1px solid #e4e8e4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 7px 22px rgb(20 43 29 / 6%);
  overflow: hidden;
}

.learning-entry-grid::after {
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 50%;
  width: 1px;
  background: #dfe4e0;
  content: "";
}

.learning-entry {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 18px 26px;
  color: #173524;
  text-decoration: none;
  transition: background-color 160ms ease;
}

.learning-entry:hover,
.learning-entry:focus-visible {
  background: #f5f8f5;
  outline: none;
}

.learning-entry-icon {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.learning-entry strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.3;
}

.learning-entry-arrow {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

@media (max-width: 720px) {
  .learning-entry-grid {
    width: calc(100% - 24px);
    min-height: 78px;
    margin: 14px 12px 16px;
    border-radius: 15px;
  }

  .learning-entry-grid::after {
    top: 18px;
    bottom: 18px;
  }

  .learning-entry {
    grid-template-columns: 34px minmax(0, 1fr) 14px;
    gap: 6px;
    padding: 14px 8px;
  }

  .learning-entry-icon {
    width: 34px;
    height: 34px;
  }

  .learning-entry strong {
    font-size: 16px;
  }

  .learning-entry-arrow {
    width: 14px;
    height: 14px;
  }
}
