/*=============================================
=                 VARIABLES                   =
=============================================*/
/*=============================================
=                   SIDEBAR                   =
=============================================*/
.site-sidebar {
  background: #2563eb;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1.5rem 1rem;
}

/*=============================================
=               SIDEBAR HEADER                =
=============================================*/
.sidebar-header__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.sidebar-header__link:hover, .sidebar-header__link:focus {
  outline: none;
  transform: translateY(1px);
}

.sidebar-header__icon {
  fill: #ffffff;
  width: 2.6rem;
  height: 2.6rem;
  min-width: 2.6rem;
}

.sidebar-header__title {
  font-size: 1.4rem;
  font-weight: 600;
}

/*=============================================
=             SIDEBAR NAVIGATION              =
=============================================*/
.sidebar-navigation {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.nav-menu {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
  padding-inline: 0.5rem;
}

.nav-menu__link {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 1rem;
  color: #ffffff;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
}
.nav-menu__link:hover, .nav-menu__link:focus {
  outline: none;
  transform: translateY(1px);
}

.nav-link__icon {
  fill: #ffffff;
  width: 1.1rem;
  height: 1.1rem;
  min-width: 1.1rem;
}

.nav-link__text {
  font-weight: 600;
  font-size: 1.1rem;
}

/*====================================
=               VARIABLES            =
====================================*/
/*====================================
=               HEADER               =
====================================*/
.page-header {
  box-shadow: 0 4px 8px -1px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2vh;
  z-index: 1;
}

.header-top {
  display: flex;
  align-items: center;
  gap: 8rem;
}

.header-bottom {
  display: flex;
  justify-content: space-between;
}

/*====================================
=             SEARCH BAR             =
====================================*/
.search-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-basis: 55%;
}

.search-bar__button {
  padding: 0;
  border: none;
  background: #ffffff;
}

.search-bar__icon {
  width: 1.6rem;
  height: 1.6rem;
  min-width: 1.6rem;
}
.search-bar__icon:hover {
  cursor: pointer;
  opacity: 0.9;
}

.search-bar__input {
  flex-basis: min(50rem, 100%);
  background: #e0e6ee;
  border-radius: 2rem;
  border: none;
  height: 2.08rem;
  padding: 0.2rem 0.8rem;
  font-size: 0.9rem;
}
.search-bar__input:focus {
  outline: none;
}

/*====================================
=            USER PROFILE            =
====================================*/
.user-profile {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1.8rem;
  justify-content: flex-end;
  padding-right: 2%;
}

.user-profile__notification-button {
  padding: 0;
  border: none;
  background: #ffffff;
}

.user-profile__notification-icon {
  width: 1.6rem;
  height: 1.6rem;
  min-width: 1.6rem;
}
.user-profile__notification-icon:hover {
  cursor: pointer;
  opacity: 0.9;
}

.user-profile__avatar {
  width: 2.88rem;
  height: 2.88rem;
}
.user-profile__avatar:hover {
  cursor: pointer;
  opacity: 0.9;
}

.user-profile__name {
  font-weight: bold;
}
.user-profile__name {
  text-decoration: none;
  color: #000000;
}
.user-profile__name:hover {
  color: #333333;
  cursor: pointer;
}
.user-profile__name:hover {
  cursor: pointer;
  opacity: 0.9;
}

/*====================================
=          WELCOME MESSAGE           =
====================================*/
.welcome-message {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.welcome-message__avatar {
  width: 4rem;
  height: 4rem;
}
.welcome-message__avatar:hover {
  cursor: pointer;
  opacity: 0.9;
}

.welcome-message__text {
  padding: 0;
  margin: 0;
  font-weight: bold;
  font-size: 0.9rem;
}

.welcome-message__handle {
  text-decoration: none;
  color: #000000;
}
.welcome-message__handle:hover {
  color: #333333;
  cursor: pointer;
}

.welcome-message__user {
  font-size: 1.2rem;
  font-weight: bold;
}

/*====================================
=          ACTION BUTTONS            =
====================================*/
.action-buttons {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.btn {
  flex: 1;
  margin: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.6rem 1.8rem;
  border-radius: 2rem;
  border: none;
  background: #2563eb;
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.btn:hover {
  cursor: pointer;
  opacity: 0.9;
}

/*====================================
=            VARIABLES               =
====================================*/
/*====================================
=          MAIN LAYOUT               =
====================================*/
.dashboard-grid {
  flex: 1;
  background: #e0e6ee;
  display: grid;
  grid-template-columns: 1fr max(20rem, 19vw);
  padding: 1.5rem 2rem 3rem;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}

.section-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

/*====================================
=             PROJECTS               =
====================================*/
.projects-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  height: 100%;
  gap: 1.5rem;
}

.project-card {
  background: #ffffff;
  position: relative;
  border-radius: 0.5rem;
  padding: 1rem 2.5rem;
  display: flex;
  box-shadow: 0 4px 6px -1px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.1);
  min-height: 14rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.project-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.project-card__highlight {
  width: 0.5rem;
  height: 100%;
  background: #10b981;
  position: absolute;
  top: 0;
  left: 0;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.project-card__title {
  font-size: 1.1rem;
  font-weight: bold;
  padding-top: 0.5rem;
}

.project-card__title-link {
  text-decoration: none;
  color: #000000;
}
.project-card__title-link:hover {
  color: #333333;
  cursor: pointer;
}

.project-card__description {
  color: #6d6d6d;
  font-size: 0.95rem;
  padding-bottom: 2rem;
  line-height: 1.4;
}

.project-card__actions {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1rem;
  position: absolute;
  right: 2.5rem;
  bottom: 1.5rem;
}

.project-card__action-button {
  background: #ffffff;
  border: none;
}
.project-card__action-button:hover {
  cursor: pointer;
  opacity: 0.9;
}

.project-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
}
.project-card__icon:hover {
  cursor: pointer;
  opacity: 0.9;
}

/*====================================
=         SIDEBAR WIDGETS            =
====================================*/
.sidebar-widgets {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  row-gap: 2.5rem;
}

/*====================================
=    ANNOUNCEMENT WIDGET            =
====================================*/
.announcements-widget {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.announcement-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 0.5rem;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.announcement-container:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.announcements-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-basis: min(22rem, 95%);
}

.announcement-item__title {
  font-size: 0.95rem;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.announcement-item__title-link {
  text-decoration: none;
  color: #000000;
}
.announcement-item__title-link:hover {
  color: #333333;
  cursor: pointer;
}

.announcement-item__text {
  font-size: 0.85rem;
  color: #6d6d6d;
  margin: 0;
  padding-top: 2px;
}

.announcement-item__divider {
  border-bottom: 1px solid #d0d0d0;
}

/*====================================
=         TRENDING WIDGET            =
====================================*/
.trending-widget {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trending-container {
  background: #ffffff;
  border-radius: 0.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trending-container:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.trending-list {
  flex-basis: min(25rem, 95%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.trending-item {
  display: flex;
  align-items: center;
}

.trending-item__avatar {
  width: 4rem;
  height: 4rem;
}
.trending-item__avatar:hover {
  cursor: pointer;
  opacity: 0.9;
}

.trending-item__info {
  display: flex;
  flex-direction: column;
}

.trending-item__handle {
  font-weight: bold;
  font-size: 1rem;
}
.trending-item__handle {
  text-decoration: none;
  color: #000000;
}
.trending-item__handle:hover {
  color: #333333;
  cursor: pointer;
}

.trending-item__project {
  color: #6d6d6d;
  font-size: 1rem;
  margin-top: -1px;
}

@font-face {
  font-family: "Inter";
  src: url("../../assets/fonts/Inter18pt-Bold.woff2") format("woff2"), url("../../assets/fonts/Inter18pt-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../assets/fonts/Inter18pt-SemiBold.woff2") format("woff2"), url("../../assets/fonts/Inter18pt-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../../assets/fonts/Inter18pt-Regular.woff2") format("woff2"), url("../../assets/fonts/Inter18pt-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

h1, h2,
h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

svg {
  width: 2rem;
  height: 2rem;
}

body {
  height: 100vh;
  margin: 0;
  display: grid;
  grid-template-columns: min(22vw, 20rem) 1fr;
  font-size: 16px;
}

.main-content {
  display: flex;
  flex-direction: column;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}/*# sourceMappingURL=main.css.map */