@import url("./common.css");

.topic-card {
  width: 100%;
}

.policy-card {
  width: 450px;
  height: 100px;
  position: relative;
  background-color: #1F88C9;
  clip-path: polygon(0% 0%, 90% 0%, 80% 100%, 0% 100%);
  display: flex;
  align-items: center;
  padding-left: 20px;
}

.policy-title {
  color: white;
  font-size: 36px;
  font-weight: bold;
  width: 300px;
  height: 40px;
  line-height: 40px;
  padding-left: 60px;
}

main {
    min-height: 800px;
}


.item {
    width: 75%;
    margin: 0 auto;
    max-width: 1400px;
    box-sizing: content-box;
    display: flex;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px dashed #ccc;
}
.item:hover {
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.5s ease;
}

.item .title {
    font-size: 1.6rem;
    font-weight: bold;
}

.item .title a,
.item .title a:hover,
.item .title a:visited,
.item .title a:active {
  color: #2a2a2a
}

.item .time {
    font-size: 1.3em;
    color: #6E6E6E;
}
