﻿.container {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
}

.banner {
  width: 100vw;
  height: 25vw;
  background: url(/static/images/entryBanner.jpeg) top center no-repeat;
  background-size: cover;
  /* border: solid 1px black; */
}

.entry {
  margin: 50px 0;
}

.entry-container {
  width: 100%;
  max-width: 1280px;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;
  /* border: solid 1px black; */
}

.items {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}

.item {
  width: 90vw;
  max-width: 100%;
  padding: 30px 5%;
  height: 120px;
  display: flex;
  flex-flow: column wrap;
  justify-content: space-around;
  align-items: flex-start;
  background-color: #fff;
  padding: 2vw 5vw;
  margin-top: 2px;
  border-bottom: dashed 1px #ccc;
  /* border: solid 1px black; */
}
.card-title {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  justify-content: space-between;
}
.card-name {
  font-size: 26px;
  color: #000;
  font-weight: 400;
}
.card-money {
  font-size: 20px;
  color: #214daa;
}
.card-department {
  font-size: 16px;
  color: #999;
  font-weight: 300;
}
.card-tags {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  font-weight: 300;
  /* align-items: flex-start;
  justify-content: space-between; */
}
.card-tag {
  padding: 0 5px;
  border-radius: 5px;
  margin-right: 10px;
  background-color: #f3f3f3;
  font-size: 12px;
  color: #999;
}

.no-entry {
  width: 100%;
  text-align: center;
  font-size: 30px;
  color: #666;
  font-weight: 300;
  /* border: solid 1px black; */
}




@media screen and (min-width: 768px) {
}

@media screen and (max-width: 767px) {
  .entry {
    margin-top: 0px;
  }
  .item {
    height: 100px;
  }
  .card-name {
    font-size: 22px;
  }
  .card-money {
    font-size: 16px;
  }
  .card-department {
    font-size: 12px;
  }
}

@media screen and (min-width: 501px) {
}

@media screen and (max-width: 500px) {
}

