.blog-feed-wrapper {
  display: flex;
  max-width: 100%;
  justify-content: center;
}

.blog-feed {
  display: flex;
  flex-wrap: wrap;
}

.blog-container {
  display: flex;
  flex-direction: column;
  border: 2px solid rgba(176, 169, 155, 0.25);
  padding: 15px;
  max-width: 300px;
  border-radius: 8px;
  margin: 30px;
  position: relative;
  padding-bottom: 35px;
}

.blog-container p {
  font-family: Urbane, Helvetica, sans-serif;
}

.blog-container img {
  /* border-radius: 10px; */
    height: 180px;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.blog-container hr {
  background-color: rgba(176, 169, 155, 0.25);
  margin: 0;
  margin-bottom: 10px;
  border: none;
  height: 1px;
}

.blog-title {
  font-family: Interstate, Helvetica, sans-serif;
  font-size: 1.5rem;
  color: black'
}

.blog-type {
  color: #F27900;
  font-size: 0.9rem;
  font-weight: bold;
}

.blog-date {
  color: #999999;
  margin-left: 20px;
  font-weight: normal;
}

.blog-description {
  color: #999999;
  font-size: 1rem;
  line-height: 1.5em;
}


.blog-link{
  display: flex;
  margin: 15px;
  margin-top: 0;
  align-items: center;
  justify-content: end;
  position: absolute;
  bottom: 0;
  right: 0;
}

.blog-link a {
  font-family: Urbane, Helvetica, sans-serif;
  font-size: 1rem;
  color: #26365B;
  text-decoration: none;
}

.blog-link img {
  height: fit-content;
  width: 30px;
  margin-left: 10px;
}