.grant-action-box {
  max-width: 1080px;
  margin: -55px auto 40px;
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 16px;
  position: relative;
  z-index: 5;
}
.grant-action-box a {
  text-decoration: none;
}
.grant-action-box__main {
  flex: 0 0 40%;
  min-height: 105px;
  padding: 22px;
  border-radius: 8px;
  background: linear-gradient(135deg, #06408f, #032f70);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 18px;
}
.grant-action-box__main:hover {
  color: #b1dfff;
}
.grant-action-box__icon {
  font-size: 42px;
  opacity: 0.95;
}
.grant-action-box__content {
  flex: 1;
}
.grant-action-box__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.grant-action-box__desc {
  font-size: 16px;
  margin-top: 4px;
  opacity: 0.95;
}
.grant-action-box__arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #06408f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.grant-action-box__menus {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #d9e2ef;
  border-radius: 8px;
  overflow: hidden;
}
.grant-menu {
  min-height: 105px;
  padding: 18px 14px;
  color: #1f2d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
  border-right: 1px solid #d9e2ef;
  transition: 0.2s ease;
}
.grant-menu:last-child {
  border-right: 0;
}
.grant-menu i {
  font-size: 34px;
  color: #06408f;
  flex-shrink: 0;
}
.grant-menu span {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}
.grant-menu:hover {
  background: #f3f7ff;
  color: #06408f;
}
@media (max-width: 991px) {
  .grant-action-box {
    margin: 20px 15px 35px;
    flex-direction: column;
  }
  .grant-action-box__main {
    flex: none;
  }
  .grant-action-box__menus {
    grid-template-columns: 1fr;
  }
  .grant-menu {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid #d9e2ef;
  }
  .grant-menu:last-child {
    border-bottom: 0;
  }
}
@media (max-width: 575px) {
  .grant-action-box {
    padding: 12px;
  }
  .grant-action-box__main {
    padding: 18px;
  }
  .grant-action-box__title {
    font-size: 18px;
  }
  .grant-action-box__desc {
    font-size: 14px;
  }
  .grant-action-box__arrow {
    display: none;
  }
  .grant-menu {
    min-height: 80px;
  }
  .grant-menu i {
    font-size: 28px;
  }
  .grant-menu span {
    font-size: 15px;
  }
}
/*# sourceMappingURL=fix-2026.css.map */