/* Hostim-style Your Account section */
.hb-hostim-account.bg-gradient,
section.bg-gradient.hb-hostim-account {
  margin: 0 0 56px;
  padding: 48px 0 0;
  position: relative;
  isolation: isolate;
  border-radius: 0;
  overflow: hidden;
  background-color: #2a555c;
  background-image:
    linear-gradient(115deg, rgba(22, 48, 54, .78) 0%, rgba(45, 90, 98, .62) 48%, rgba(34, 72, 78, .72) 100%),
    radial-gradient(ellipse at 18% 20%, rgba(136, 192, 56, .18), transparent 42%),
    var(--hb-account-bg-image, none);
  background-size: auto, auto, cover;
  background-position: center, center, center 40%;
  background-repeat: no-repeat;
}
.hb-hostim-account.bg-gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: .35;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.25));
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.25));
}
.hb-hostim-account.bg-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, .12), transparent 28%),
    linear-gradient(180deg, rgba(15, 30, 34, .12) 0%, rgba(15, 30, 34, .28) 100%);
}
.hb-hostim-account .container {
  position: relative;
  z-index: 1;
}
.hb-account-layout {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  min-height: 280px;
}
.hb-account-main {
  flex: 1 1 auto;
  min-width: 0;
  padding-bottom: 48px;
}
.hb-account-aside {
  flex: 0 0 280px;
  max-width: 300px;
  align-self: flex-end;
  pointer-events: none;
  margin-bottom: 0;
}
.hb-account-visual {
  display: block;
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, .28));
  user-select: none;
}
.hb-hostim-account .tt-section-heading {
  margin-bottom: 28px;
}
.hb-hostim-account .tt-section-heading h2,
.hb-hostim-account .text-white {
  margin: 0;
  color: #fff !important;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.25;
}
.hb-hostim-account .justify-content-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.hb-hostim-account .tt-account-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  width: 100%;
}
.hb-hostim-account a.tt-account {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 148px;
  padding: 18px 12px !important;
  background: #fff !important;
  color: #1e293b !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.3;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
  border: 1px solid rgba(255, 255, 255, .8);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hb-hostim-account a.tt-account.tt-rounded {
  border-radius: 14px;
}
.hb-hostim-account a.tt-account:hover,
.hb-hostim-account a.tt-account:focus {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(15, 23, 42, .18);
  border-color: #d5e9bb;
  color: #0f172a !important;
  text-decoration: none !important;
}
.hb-hostim-account a.tt-account img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin: 0 auto;
}
.hb-hostim-account .mb-4 { margin-bottom: 24px; }
.hb-hostim-account .p-4 { padding: 1.5rem; }
.hb-hostim-account .mx-auto { margin-left: auto; margin-right: auto; }
.hb-hostim-account .pt-60 { padding-top: 48px; }
.hb-hostim-account .mb-lg-5 { margin-bottom: 48px; }

@media (max-width: 1199px) {
  .hb-account-aside { flex-basis: 220px; max-width: 240px; }
  .hb-account-visual { max-height: 300px; }
}
@media (max-width: 991px) {
  .hb-hostim-account.bg-gradient { padding: 36px 0 28px; margin-bottom: 36px; }
  .hb-account-layout { display: block; }
  .hb-account-aside {
    max-width: 200px;
    margin: 0 auto -8px;
  }
  .hb-account-main { padding-bottom: 8px; }
  .hb-hostim-account .tt-section-heading h2 { font-size: 24px; }
  .hb-hostim-account .tt-account-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    justify-items: stretch;
  }
  .hb-hostim-account .tt-account-row > a.tt-account:last-child {
    grid-column: 1 / -1;
    width: calc((100% - 12px) / 2);
    max-width: 100%;
    justify-self: center;
  }
}
@media (max-width: 767px) {
  .hb-account-aside { display: none; }
  .hb-hostim-account .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .hb-hostim-account a.tt-account {
    min-height: 132px;
    font-size: 12.5px;
    gap: 10px;
    padding: 16px 10px !important;
  }
  .hb-hostim-account a.tt-account img {
    width: 48px;
    height: 48px;
  }
}
