* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: "Roboto", sans-serif;
  background-color: #333;
}

.dash-icon {
  width: 50px;
  height: 50px;
  fill: #ffffff;
}

header {
  background-color: #ffffff;
  padding: 0px 40px;
  grid-column: 2 /-1;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 1fr 1fr;
  column-gap: 20px;
  box-shadow: 0px 3px 5px #ccc;
  z-index: 1;
}

.header-menu,
.header-submenu {
  margin-bottom: 65px;
  padding-left: 13px;
}

nav {
  background-color: #0095d1;
  grid-row: 1/-1;
  padding: 14px;
}

main {
  background-color: #e1e8f0;
}

.main-inner-container {
  display: flex;
  padding: 30px 18px;
  gap: 16px;
}

li {
  list-style: none;
  margin-bottom: 20px;
}

li a:link,
li a:visited {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: 440;
  gap: 15px;
}

li a:hover,
li a:active {
  color: #dddddd;
}

.heading a:link,
.heading a:visited {
  color: #ffffff;
}

a:link {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

svg {
  height: 23px;
  width: 23px;
}
.nav-icon {
  fill: #ffffff;
}

.site-container {
  margin: 0 auto;
  width: 1300px;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-template-rows: 1fr 5fr;
}

.heading h1 {
  font-size: 28px;
  font-weight: 500;
}

.heading a {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 10px;
  margin-bottom: 55px;
}

.search-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

#search-box {
  width: 100%;
  height: 30px;
  border-radius: 40px;
  border-style: none;
  padding: 8px;
  background-color: #e1e8f0;
}

.login-info-container {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 22px;
  padding-right: 22px;
}

.login-info-container span {
  font-size: 18px;
  font-weight: 700;
}

.display-name-container {
  display: flex;
  gap: 16px;
  align-items: center;
}

.button-container {
  display: flex;
  align-items: center;
  gap: 25px;
  justify-content: right;
}

.button-container button {
  height: 38px;
  width: 98px;
  border-radius: 100px;
  border: none;
  background-color: #0095d1;
  color: #ffffff;
  font-size: 15px;
  font-weight: 580;
  transition: all 0.3s;
}

.button-container button:hover,
.button-container button:active {
  background-color: #0087bc;
}

button:hover {
  cursor: pointer;
}

.login-photo {
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
}

.main-photo {
  max-width: 59px;
  max-height: 59px;
  border-radius: 50%;
}

.person-container p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 4px;
}

.person-container h3 {
  font-size: 24px;
  font-weight: 650;
}

.cards-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 25px;
}

.card-container {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 12px;
  position: relative;
  z-index: 0;
  box-shadow: 2px 3px 5px #ccc;
}

.card-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 8px;
  background-color: #e7b64a;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  z-index: -1;
}

.card-header {
  font-size: 16px;
  font-weight: 650;
  margin-bottom: 3px;
}

.card-text {
  font-size: 15px;
  color: #777;
  margin-bottom: 22px;
}

.card-icons-container {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
  gap: 22px;
}

.projects-container {
  width: 72%;
}

.project-header {
  font-weight: 450;
  font-size: 20px;
  margin-bottom: 12px;
}

.side-container {
  flex: 28%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.announcement-post h4 {
  font-size: 13px;
  margin-bottom: 2px;
}

.announcement-post:not(:last-child) {
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}

.announcement-post:not(:first-child) {
  padding-top: 16px;
}

.announcement-post p {
  color: #777;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 11px;
}

.announcements-posts-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 2px 3px 5px #ccc;
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.trending-posts-container {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 2px 3px 5px #ccc;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.trending-display-name-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.trending-display-name-container p {
  font-weight: 350;
  font-size: 14px;
  margin-bottom: 2px;
}
.trending-display-name-container h5 {
  font-weight: 400;
  font-size: 13px;
  color: #777;
}

.trending-person-photo {
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
}
