.home-inner-container {
  display: block;
  /* width: 100%; */
  min-height: 100%;
  margin-top: 2rem;
  box-sizing: border-box;
  margin: 1rem auto;
  padding: 0 16px;
}

.styled-context-box {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.styled-context-box-inner {
  text-align: center;
}

.home-logo {
  height: auto;
  width: 11.5rem;
  margin-bottom: 0.5rem;
}

.styled-list {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0px;
  align-items: center;
}

.home-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-section-description {
  margin: 0px;
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--secondary-text-color);  /* add as variable in manifest "secondary_text" */
  line-height: 1.43;
}

.home-categories {
  height: 3.7rem;
  width: 30%;
  border-radius: 0.625rem;
  display: flex;
  margin: 0.7rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.2s ease-in-out 0s;
  text-decoration: none;
}

.home-category-title {
  display: flex;
  margin: 0px;
  font-weight: 400;
  font-size: 1rem;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  line-height: 1.167;
  align-items: center;
  overflow: clip;
  justify-content: space-around;
  transition: all 0.2s ease-in-out 0s;
}

.home-categories:hover .home-category-title {
  filter: brightness(115%);
}

.home-divider {
  flex-shrink: 0;
  border-width: 0px 0px thin;
  margin-top: 2rem;
  margin-bottom: 1rem;
  border-style: solid;
  border-color: #DADEE5;
}

.home-area-title {
  margin: 0px 0px 1rem;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.334;
}

.home-resources-cards {
  border-radius: 0.625rem;
  display: flex;
  margin: 0.7rem;
  text-align: center;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-in-out 0s;
  text-decoration: none;
  height: 3rem;
  width: 16.7%;
  overflow: auto;
}

.home-resources-cards img {
  height: auto;
  width: 85%;
  overflow: hidden;
}

.home-resources-cards:hover {
  text-decoration-color: inherit;
}

.home-cards-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Media Queries */

@media (min-width: 600px) {
  .home-inner-container {
    padding: 0 24px;
  }
}

@media (max-width: 400px) {
  .styled-list {
    flex-direction: column;
  }
}

@media (min-width: 1200px) {
  .home-inner-container {
    max-width: 1200px;
  }
}