/* Breakpoints */
.main-screen h2 {
  color: var(--Colors-Text-Headings, #333);
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px; /* 150% */
}
.main-screen h3 {
  color: var(--Colors-Text-Headings, #333);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 28px; /* 155.556% */
}
.main-screen h4 {
  color: var(--Colors-Text-Headings, #333);
  font-family: Inter;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px; /* 160% */
}
.main-screen__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.main-screen__recent-none {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--Subtext, #777);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  min-height: 124px;
}
.main-screen__recent-projects, .main-screen__recent-templates {
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  row-gap: 24px;
}
.main-screen__recent-projects:has(> :nth-child(4)) .main-screen__recent-none, .main-screen__recent-templates:has(> :nth-child(4)) .main-screen__recent-none {
  display: none;
}
.main-screen__recent-projects h3, .main-screen__recent-templates h3 {
  margin-bottom: 0;
}
.main-screen__recent-projects > a, .main-screen__recent-templates > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px 6px 12px;
  border-radius: 8px;
  background: var(--Colors-Buttons-Secondary, rgba(149, 130, 181, 0.15));
  justify-self: end;
  color: var(--Colors-Text-Text, #505050);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}
.main-screen__recent-projects > a::after, .main-screen__recent-templates > a::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='6' viewBox='0 0 14 6' fill='none'%3E%3Cpath d='M10 3L0 3' stroke='%239582B5' stroke-width='2'/%3E%3Cpath d='M12 3L8 1V5L12 3Z' fill='%239582B5' stroke='%239582B5'/%3E%3C/svg%3E");
  transform: translate(0, -1px);
  transition: all 0.3s ease 0s;
}
.main-screen__recent-projects > a:hover::after, .main-screen__recent-templates > a:hover::after {
  transform: translate(4px, -1px);
}
.main-screen__recent-projects-list, .main-screen__recent-templates-list {
  grid-column: 1/-1;
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1566px) {
  .main-screen__recent-projects-list, .main-screen__recent-templates-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.main-screen__recent-projects-list-item {
  align-self: baseline;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  column-gap: 10px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--colors-stroke-blocks-20, rgba(149, 130, 181, 0.2));
  background: var(--Colors-Backgound-Pure-White, #fff);
  transition: all 0.3s ease;
}
.main-screen__recent-projects-list-item:hover {
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.08);
}
.main-screen__recent-projects-list-item h4 {
  grid-column: 1/-1;
  margin-bottom: 4px;
}
.main-screen__recent-projects-list-item p:not([class]) {
  grid-column: 1/-1;
  overflow: hidden;
  color: var(--Colors-Text-Text, #505050);
  text-overflow: ellipsis;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  margin-bottom: 8px;
}
.main-screen__recent-projects-list-item-domain {
  grid-column: 1/-1;
  color: var(--Colors-Buttons-Primary, #6b56e2);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
  text-decoration: underline;
  margin-bottom: 16px;
}
.main-screen__recent-projects-list-item-pages {
  grid-column: 1;
  margin-bottom: 0;
  color: var(--Colors-Text-Subtext, #777);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
}
.main-screen__recent-projects-list-item-pages span {
  color: var(--Colors-Text-Text, #505050);
  font-weight: 600;
  line-height: 20px; /* 153.846% */
}
.main-screen__recent-projects-list-item-geo {
  grid-column: 2;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--Colors-Text-Subtext, #777);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
}
.main-screen__recent-projects-list-item-geo > span {
  width: 18px;
  height: 13px;
}
.main-screen__recent-templates-list-item {
  align-self: baseline;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--colors-stroke-blocks-20, rgba(149, 130, 181, 0.2));
  background: var(--Colors-Backgound-Pure-White, #fff);
  transition: all 0.3s ease;
}
.main-screen__recent-templates-list-item:hover {
  box-shadow: 4px 4px 8px 0px rgba(0, 0, 0, 0.08);
}
.main-screen__recent-templates-list-item p:not([class]) {
  color: var(--Colors-Text-Subtext, #777);
  font-family: Inter;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 153.846% */
  margin-bottom: 4px;
}
.main-screen__recent-templates-list-item p:not([class]) span {
  color: var(--Colors-Text-Text, #505050);
}
.main-screen__recent-templates-list-item h4 {
  margin-bottom: 16px;
}
