.extra{
  background-color: var(--main-bg-color);
    box-shadow: inset 0 3px 0 rgba(0, 0, 0, 0.15);
    grid-area: extra;
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    justify-content: center;
}

.trending-header,
.extra-header{
  font-weight: bold;
   font-size: 1.2rem;
  font-weight: 500;
    margin: 10px;
    transition: color 0.15s;
}

.trending-container,
.anounce-container{
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
width: 300px;
height: 320px;
transition: background-color margin box-shadow 0.15s;
}
.anounce-container{
  margin-top: 8px;
    padding: 8px 15px;
row-gap: 10px;
justify-content: space-evenly;

}
.anounce-text-container{
cursor: pointer;
}
.anounce-header{
font-weight: 500;
font-size: 1.1rem;
cursor: pointer;
transition: color 0.15s;
}

.anounce-text{
  color: var(--text-color);
font-size: 0.8rem;
font-weight: 400;
padding-bottom: 15px;
border-bottom: 1px solid rgb(215, 213, 213);
width: 250px;
}

.last{
  border-bottom: none;
}

.anounce-header:hover{
  color: var(--green-hover);
}

.anounce-container:hover{
    box-shadow: 5px 8px 5px rgba(0, 0, 0, 0.15);
}

.trending-header:hover,
.extra-header:hover{
  color: var(--grey-hover);
}

.trending-container{
  gap: 10px;
  margin-left: 5px;
  justify-content: space-around;
  padding: 10px 0;
  margin-bottom: 20px;
}

.trending-text{
  font-size: 1.1rem;
  color: var(--grey-hover);
}

.profile{
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
  padding:2px 10px;
  border-radius: 10px;
  cursor: pointer;
}

.user{
  font-weight: 500;
}


.profile:hover{
  background-color: whitesmoke;
  color:var(--hover-bg-color);
}