@charset "utf-8";

.main-cont:nth-child(odd) {
  background-color: #f2f2f2;
}
.words-list {
  margin-top: 30px;
}
.words-item:not(:first-child) {
  margin-top: 5px;
}
a.words-link {
  position: relative;
  display: inline-block;
  padding: 0 0 0 17px;
  color: #232b35;
  font-size: 18px;
  text-decoration: none;
}
a.words-link::before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 10px;
  height: 15px;
  background-color: #b3b3b3;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
a.words-link:hover {
  opacity: .6;
}
.words-card li {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 3px 9px rgba(212, 212, 212, .5);
}
.words-card li:not(:first-child) {
  margin-top: 30px;
}
.words-card h3 {
  font-size: 22px;
  font-weight: bold;
}
.side-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7px;
}
.side-item:first-child {
  margin-top: 0;
}
.side-thumb {
  width: 300px;
  min-width: 300px;
  margin-right: 20px;
}
.side-cont {
  width: 100%;
  font-size: 18px;
}
.side-cont p:not(:first-child) {
  margin-top: 25px;
}

@media screen and (max-width: 768px) {
  .words {
    display: block;
    max-width: 100%;
  }
  .words-cont {
    width: 100%;
  }
  .words-cont:not(:first-child) {
    margin-top: 28px;
  }
  .words-list {
    margin-top: 5px;
    font-size: 0;
  }
  
  .words-item:not(:first-child) {
    margin-top: 6px;
  }
  a.words-link {
    border-width: 1px;
    font-size: 16px;
    border-radius: 5px;
  }
  a.words-link::before {
    top: 7px;
    width: 8px;
    height: 12px;
  }
  .words-card li {
    padding: 30px 22px;
  }
  .words-card h3 {
    font-size: 20px;
    text-align: center;
  }
  .side-item {
    display: block;
  }
  .side-thumb {
    width: 100%;
    min-width: inherit;
    max-width: 300px;
    margin: 0 auto;
  }
  .side-cont {
    margin-top: 10px;
    font-size: 16px;
  }

}