/* DLRMS public QR — desktop like dlrms.land.gov.bd, mobile compact */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Bengali:wght@400;500;700&display=swap');

.dlrms-pub-page {
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-family: 'Noto Sans Bengali', 'Nirmala UI', SolaimanLipi, sans-serif;
  background: #f5f6fa;
  color: #1a1a1a;
}

/* ========== HEADER (logo between top + main bar) ========== */
.dlrms-pub-header {
  --dlrms-header-max: 1400px;
  --dlrms-header-pad: 36px;
  --dlrms-logo-size: 46px;
  --dlrms-logo-slot: 58px;
  --dlrms-bar-h: 36px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 4px 3px 4px rgba(0, 0, 0, 0.12);
}

.dlrms-pub-accent {
  display: none;
}

.dlrms-pub-logo {
  z-index: 5;
  line-height: 0;
  text-decoration: none;
}

@media (min-width: 901px) {
  .dlrms-pub-logo {
    position: absolute;
    left: max(var(--dlrms-header-pad), calc((100% - var(--dlrms-header-max)) / 2 + var(--dlrms-header-pad)));
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 1px;
    border-radius: 2px;
  }
}

.dlrms-pub-main-logo,
.dlrms-pub-logo img {
  display: block;
  width: var(--dlrms-logo-size);
  height: var(--dlrms-logo-size);
  object-fit: contain;
  box-sizing: border-box;
}

.dlrms-pub-topbar {
  width: 100%;
  min-height: var(--dlrms-bar-h);
  height: var(--dlrms-bar-h);
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  color: #fff;
  box-sizing: border-box;
}

.dlrms-pub-date-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--dlrms-header-max);
  margin: 0 auto;
  padding: 0 var(--dlrms-header-pad);
  box-sizing: border-box;
  min-height: var(--dlrms-bar-h);
  background: linear-gradient(to left, #ffffff 0%, #075e24 50%, #ffffff 100%);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}

.dlrms-pub-nav-wrap {
  background: #fff;
  border-bottom: 1px solid #eeeeee;
}

.dlrms-pub-nav {
  max-width: var(--dlrms-header-max);
  margin: 0 auto;
  min-height: var(--dlrms-bar-h);
  padding: 0 var(--dlrms-header-pad) 0 calc(max(var(--dlrms-header-pad), (100% - var(--dlrms-header-max)) / 2 + var(--dlrms-header-pad)) + var(--dlrms-logo-slot));
  display: flex;
  align-items: center;
  gap: 10px;
  box-sizing: border-box;
}

.dlrms-pub-menu {
  flex: 1;
  display: none;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  margin-left: 6px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.15;
}

.dlrms-pub-menu > * + * {
  margin-left: 19px;
}

.dlrms-pub-menu a,
.dlrms-pub-menu-drop {
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.dlrms-pub-menu a:hover,
.dlrms-pub-menu-drop:hover {
  background: #048340;
  color: #fff;
}

.dlrms-pub-menu-drop {
  cursor: default;
}

.dlrms-pub-menu-drop svg {
  width: 17px;
  height: 17px;
  opacity: 0.9;
  flex-shrink: 0;
}

.dlrms-pub-actions {
  margin-left: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.dlrms-pub-cart {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 2px;
  border: none;
  border-radius: 50%;
  background: #075e24;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: default;
  transition: background 0.2s;
  box-sizing: border-box;
}

.dlrms-pub-cart:hover {
  background: #048340;
}

.dlrms-pub-cart svg {
  width: 17px;
  height: 17px;
}

.dlrms-pub-cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  min-width: 13px;
  height: 13px;
  padding: 0 2px;
  border-radius: 7px;
  background: #d32f2f;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 13px;
  text-align: center;
  border: 2px solid #fff;
  box-sizing: border-box;
  transform: translate(35%, -35%);
}

.dlrms-pub-login {
  background: #075e24;
  color: #fff;
  min-height: 20px;
  padding: 1px 10px 0;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  transition: background 0.2s;
}

.dlrms-pub-login:hover {
  background: #048340;
  color: #fff;
}

.dlrms-pub-login svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.dlrms-pub-menu-btn {
  display: none;
}

@media (min-width: 901px) {
  .dlrms-pub-menu {
    display: flex;
  }

  .dlrms-pub-mobile-menu {
    display: none !important;
  }
}

/* ========== MAIN PANEL (professional card) ========== */
.dlrms-pub-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 32px;
  background: #f0f2f5;
}

.dlrms-pub-panel {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(7, 94, 36, 0.1);
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.04),
    0 8px 28px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.dlrms-pub-panel-head {
  padding: 18px 20px 16px;
  text-align: center;
  background: linear-gradient(180deg, #f3faf5 0%, #ffffff 100%);
  border-bottom: 1px solid #e8efe9;
}

.dlrms-pub-panel-badge {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 12px;
  border-radius: 999px;
  background: #075e24;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.dlrms-pub-panel-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #075e24;
}

.dlrms-pub-panel-body {
  padding: 6px 0 4px;
}

.dlrms-pub-panel-msg {
  margin: 0;
  padding: 16px 22px 20px;
  text-align: center;
  font-size: 15px;
  line-height: 1.6;
  color: #4a5568;
}

.dlrms-pub-panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: #e8f5e9;
  color: #075e24;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.dlrms-pub-panel-logo {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 12px;
  object-fit: contain;
}

.dlrms-pub-panel--home {
  max-width: 400px;
}

.dlrms-pub-panel--notice .dlrms-pub-panel-head {
  background: linear-gradient(180deg, #fff8e8 0%, #ffffff 100%);
}

.dlrms-pub-panel--notice .dlrms-pub-panel-title {
  color: #9a6b00;
}

.dlrms-pub-info-list {
  margin: 0;
  padding: 0;
}

.dlrms-pub-info-item {
  display: grid;
  grid-template-columns: minmax(88px, 38%) 1fr;
  gap: 4px 14px;
  align-items: start;
  padding: 11px 20px;
  border-bottom: 1px solid #f0f2f0;
  font-size: 15px;
  line-height: 1.45;
}

.dlrms-pub-info-item:last-child {
  border-bottom: none;
}

.dlrms-pub-info-item:nth-child(even) {
  background: #fafcfb;
}

.dlrms-pub-info-item dt {
  margin: 0;
  font-weight: 600;
  color: #1a1a1a;
}

.dlrms-pub-info-item dt::after {
  content: ' :';
  font-weight: 700;
  color: #075e24;
}

.dlrms-pub-info-item dd {
  margin: 0;
  font-weight: 500;
  color: #2d3748;
  word-break: break-word;
}

/* legacy aliases */
.dlrms-pub-card,
.dlrms-pub-card-home {
  composes: panel;
}

.dlrms-pub-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #075e24;
}

.dlrms-pub-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

/* ========== FOOTER (dlrms.land.gov.bd) ========== */
.dlrms-pub-footer {
  margin-top: auto;
  position: relative;
}

.dlrms-pub-footer-pre {
  background: #f5f6fa;
  padding: 0 42px;
}

.dlrms-pub-footer-pre-inner {
  max-width: 1323px;
  margin: 0 auto;
  height: 251px;
}

.dlrms-pub-footer-gradiant {
  height: 26px;
  margin: 0 0 38px;
  background: linear-gradient(to left, #ffffff 0%, #048340 50%, #ffffff 100%);
}

.dlrms-pub-footer-main {
  background: #e4ffe2;
  padding: 0;
  position: relative;
  overflow: visible;
}

.dlrms-pub-footer-body {
  position: relative;
  max-width: 1323px;
  margin: 0 auto;
  padding: 0 42px 59px;
  overflow: visible;
}

.dlrms-pub-footer-row {
  padding: 45px 0 0;
  display: grid;
  grid-template-columns: minmax(246px, 4fr) minmax(284px, 4.5fr) minmax(160px, 2fr) minmax(189px, 3fr);
  gap: 15px 23px;
  align-items: center;
}

.dlrms-pub-fcol-links,
.dlrms-pub-fcol-plan,
.dlrms-pub-fcol-social {
  align-self: start;
}

.dlrms-pub-fcol-gplay {
  align-self: center;
  justify-self: end;
}

.dlrms-pub-footer h5 {
  color: #075e24;
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 21px;
  padding-left: 10%;
}

.dlrms-pub-fcol-plan h6,
.dlrms-pub-fcol-social h6 {
  color: #075e24;
  margin: 0 0 7px;
  font-weight: 500;
  font-size: 17px;
}

.dlrms-pub-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.dlrms-pub-link-cols {
  display: flex;
  gap: 0 20px;
}

.dlrms-pub-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dlrms-pub-link-list li {
  margin: 0 0 4px;
  font-size: 15px;
  line-height: 1.35;
}

.dlrms-pub-link-list a {
  color: #222;
  text-decoration: none;
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;
}

.dlrms-pub-link-list a::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #075e24;
  margin-top: 5px;
  flex-shrink: 0;
}

.dlrms-pub-link-list a:hover {
  color: #1b6b3a;
}

.dlrms-pub-fcol-plan {
  min-width: 0;
}

.dlrms-pub-plan-brands {
  display: block;
  line-height: 0;
}

.dlrms-pub-impl-logo {
  display: block;
  width: 326px;
  max-width: 100%;
  height: auto;
  margin-left: -9px;
  object-fit: contain;
  object-position: left center;
}

.dlrms-pub-fcol-gplay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 113px;
  padding-top: 0;
  margin-right: 8px;
  transform: translate(-29%, -8%);
}

.dlrms-pub-gplay {
  display: block;
  line-height: 0;
}

.dlrms-pub-gplay img {
  display: block;
  width: 155px;
  height: auto;
}

.dlrms-pub-fcol-social {
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 208px;
  transform: translateY(-5%);
}

.dlrms-pub-fcol-social h6 {
  width: 100%;
  text-align: center;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.dlrms-pub-social {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 12px;
}

.dlrms-pub-social a {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}

.dlrms-pub-social img {
  display: block;
  width: 38px;
  max-width: 38px;
  height: auto;
  border-radius: 6px;
}

.dlrms-pub-fab-row {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dlrms-pub-fab {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.dlrms-pub-fab-top {
  background: #1b6b3a;
  color: #fff;
}

.dlrms-pub-fab-chat {
  background: #1976d2;
  color: #fff;
}

.dlrms-pub-fab svg {
  width: 23px;
  height: 23px;
}

.dlrms-pub-tech-notch {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 5;
  background: #fff;
  border-top-left-radius: 71px;
  padding: 9px 47px 8px 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: -4px -2px 14px rgba(0, 0, 0, 0.06);
  pointer-events: auto;
}

.dlrms-pub-tech-notch h6 {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #075e24;
  white-space: nowrap;
}

.dlrms-pub-tech-notch a {
  display: block;
  line-height: 0;
}

.dlrms-pub-tech-notch img {
  width: 143px;
  height: auto;
  display: block;
}

.dlrms-pub-copy-bar {
  background: #fff;
  padding: 7px 0;
  text-align: left;
  position: relative;
  z-index: 1;
}

.dlrms-pub-copy-bar p {
  margin: 0 0 0 19px;
  font-size: 13px;
  color: #000;
  max-width: 1323px;
}

@media (min-width: 901px) {
  .dlrms-pub-tech-notch {
    right: 0;
    bottom: 0;
  }
}

@media (min-width: 601px) and (max-width: 900px) {
  .dlrms-pub-header {
    --dlrms-header-pad: 16px;
    --dlrms-logo-size: 40px;
    --dlrms-top-h: 30px;
    --dlrms-main-h: 46px;
  }
}

/* ========== MOBILE (gov.bd screenshot — desktop 901px+ unchanged) ========== */
@media (max-width: 900px) {
  .dlrms-pub-page {
    overflow-x: hidden;
  }

  .dlrms-pub-header {
    --dlrms-header-pad: 14px;
    --dlrms-logo-size: 38px;
    --dlrms-top-h: 28px;
    --dlrms-main-h: 44px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: var(--dlrms-top-h) var(--dlrms-main-h);
    grid-template-areas:
      "topbar topbar"
      "logo navwrap";
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .dlrms-pub-logo {
    grid-area: logo;
    align-self: center;
    margin-left: var(--dlrms-header-pad);
    background: transparent;
    padding: 0;
  }

  .dlrms-pub-topbar {
    grid-area: topbar;
    height: var(--dlrms-top-h);
    min-height: var(--dlrms-top-h);
    overflow: hidden;
  }

  .dlrms-pub-date-label {
    width: 100%;
    max-width: none;
    min-height: var(--dlrms-top-h);
    padding: 0 12px;
    font-size: clamp(12px, 3.25vw, 14px);
    line-height: 1.1;
    justify-content: center;
    background: linear-gradient(to left, #ffffff 0%, #075e24 50%, #ffffff 100%);
  }

  .dlrms-pub-nav-wrap {
    grid-area: navwrap;
    border-bottom: none;
  }

  .dlrms-pub-nav {
    max-width: none;
    margin: 0;
    min-height: var(--dlrms-main-h);
    height: var(--dlrms-main-h);
    padding: 0 var(--dlrms-header-pad) 0 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .dlrms-pub-menu,
  .dlrms-pub-login-desktop {
    display: none !important;
  }

  .dlrms-pub-mobile-menu {
    display: none;
  }

  .dlrms-pub-actions {
    margin-left: 0;
    gap: 8px;
  }

  .dlrms-pub-cart {
    width: 28px;
    height: 28px;
    padding: 3px;
  }

  .dlrms-pub-cart svg {
    width: 16px;
    height: 16px;
  }

  .dlrms-pub-cart-badge {
    display: none;
  }

  .dlrms-pub-menu-btn {
    display: flex;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #424242;
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .dlrms-pub-menu-btn svg {
    width: 22px;
    height: 22px;
  }

  .dlrms-pub-header.dlrms-pub-menu-open .dlrms-pub-mobile-menu {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    top: calc(var(--dlrms-top-h) + var(--dlrms-main-h));
    z-index: 1001;
    margin: 0;
    padding: 4px 0 10px;
    background: #fff;
    border-top: 1px solid #eeeeee;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    box-sizing: border-box;
  }

  .dlrms-pub-mobile-menu a,
  .dlrms-pub-mobile-menu .dlrms-pub-menu-drop {
    display: block;
    padding: 11px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .dlrms-pub-mobile-menu .dlrms-pub-menu-drop {
    cursor: default;
  }

  .dlrms-pub-mobile-menu .dlrms-pub-mobile-login {
    margin: 8px 16px 4px;
    padding: 8px 16px;
    border-radius: 999px;
    text-align: center;
    border-bottom: none;
    background: #075e24;
    color: #fff;
  }

  .dlrms-pub-main {
    padding: 15px 13px 0;
    align-items: flex-start;
  }

  .dlrms-pub-card {
    padding: 15px 17px 17px;
    max-width: 315px;
    margin: 0 auto;
  }

  .dlrms-pub-card-title {
    font-size: 18px;
    margin-bottom: 11px;
  }

  .dlrms-pub-info-table {
    font-size: 14px;
  }

  /* Footer — 2-col links, plan|social, gplay + tech notch */
  .dlrms-pub-footer-pre {
    padding: 0 12px;
  }

  .dlrms-pub-footer-pre-inner {
    height: 48px;
  }

  .dlrms-pub-footer-gradiant {
    height: 14px;
    margin: 0 0 12px;
  }

  .dlrms-pub-footer-body {
    padding: 0 14px 68px;
    position: relative;
  }

  .dlrms-pub-footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "links links"
      "plan social"
      "gplay gplay";
    padding: 18px 0 0;
    gap: 14px 10px;
    align-items: start;
  }

  .dlrms-pub-fcol-links {
    grid-area: links;
  }

  .dlrms-pub-footer h5 {
    font-size: 17px;
    font-weight: 700;
    padding-left: 0;
    margin-bottom: 10px;
    text-align: left;
    color: #075e24;
  }

  .dlrms-pub-link-cols {
    flex-direction: row;
    gap: 8px 14px;
    align-items: flex-start;
  }

  .dlrms-pub-link-cols .dlrms-pub-link-list {
    flex: 1;
    min-width: 0;
  }

  .dlrms-pub-link-list li {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .dlrms-pub-link-list a::before {
    border-top-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 6px;
    margin-top: 4px;
  }

  .dlrms-pub-fcol-plan {
    grid-area: plan;
    align-self: start;
  }

  .dlrms-pub-fcol-plan h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: left;
  }

  .dlrms-pub-impl-logo {
    width: 100%;
    max-width: 210px;
    margin-left: 0;
  }

  .dlrms-pub-fcol-social {
    grid-area: social;
    align-self: start;
    justify-self: stretch;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
    transform: none;
  }

  .dlrms-pub-fcol-social h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: left;
    margin-bottom: 8px;
  }

  .dlrms-pub-social {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
  }

  .dlrms-pub-social img {
    width: 32px;
    max-width: 32px;
  }

  .dlrms-pub-fab-row {
    position: fixed;
    right: 12px;
    bottom: 148px;
    z-index: 25;
    flex-direction: column;
    gap: 10px;
    margin: 0;
  }

  .dlrms-pub-fab-top {
    display: none;
  }

  .dlrms-pub-fab-chat {
    width: 44px;
    height: 44px;
  }

  .dlrms-pub-fcol-gplay {
    grid-area: gplay;
    align-self: start;
    justify-self: start;
    align-items: flex-start;
    min-height: 0;
    margin: 4px 0 0;
    padding: 0;
    transform: none;
  }

  .dlrms-pub-gplay img {
    width: 128px;
  }

  .dlrms-pub-tech-notch {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 8;
    margin: 0;
    padding: 10px 14px 10px 28px;
    border-top-left-radius: 56px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    max-width: calc(100% - 8px);
    box-sizing: border-box;
    box-shadow: -3px -2px 10px rgba(0, 0, 0, 0.06);
  }

  .dlrms-pub-tech-notch h6 {
    font-size: 13px;
    font-weight: 500;
    margin: 0;
    color: #075e24;
    white-space: nowrap;
    line-height: 1.2;
  }

  .dlrms-pub-tech-notch img {
    width: 118px;
    max-width: 42vw;
    height: auto;
  }

  .dlrms-pub-copy-bar {
    text-align: left;
    padding: 11px 14px;
  }

  .dlrms-pub-copy-bar p {
    margin: 0;
    padding: 0;
    font-size: 12px;
    text-align: left;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .dlrms-pub-header {
    --dlrms-header-pad: 10px;
    --dlrms-logo-size: 34px;
    --dlrms-top-h: 26px;
    --dlrms-main-h: 40px;
  }

  .dlrms-pub-date-label {
    font-size: clamp(11px, 2.95vw, 13px);
    padding: 0 8px;
  }

  .dlrms-pub-tech-notch {
    padding: 8px 10px 8px 22px;
    border-top-left-radius: 44px;
  }

  .dlrms-pub-tech-notch h6 {
    font-size: 12px;
  }

  .dlrms-pub-tech-notch img {
    width: 100px;
  }

  .dlrms-pub-fab-row {
    bottom: 132px;
    right: 8px;
  }

  .dlrms-pub-cart {
    width: 26px;
    height: 26px;
  }

  .dlrms-pub-menu-btn {
    width: 26px;
    height: 26px;
  }

  .dlrms-pub-menu-btn svg {
    width: 20px;
    height: 20px;
  }

  .dlrms-pub-card {
    max-width: 100%;
  }

  .dlrms-pub-link-list li {
    font-size: 12px;
  }

  .dlrms-pub-impl-logo {
    max-width: 185px;
  }

  .dlrms-pub-social img {
    width: 28px;
    max-width: 28px;
  }
}

@media (min-width: 901px) {
  .dlrms-pub-mobile-menu,
  .dlrms-pub-menu-btn {
    display: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .dlrms-pub-footer-pre {
    padding: 0 23px;
  }

  .dlrms-pub-footer-body {
    padding: 0 23px 50px;
  }

  .dlrms-pub-footer-row {
    grid-template-columns: 1fr 1fr;
    padding-top: 38px;
  }

  .dlrms-pub-fcol-links {
    grid-column: 1 / -1;
  }

  .dlrms-pub-fcol-plan {
    grid-column: 1 / -1;
    align-self: start;
  }

  .dlrms-pub-fcol-gplay {
    grid-column: 1;
    justify-self: center;
    align-self: center;
    margin-right: 0;
  }

  .dlrms-pub-fcol-social {
    grid-column: 2;
    justify-self: end;
  }

  .dlrms-pub-impl-logo {
    width: 254px;
  }
}
