.mbbs-uni-media {
  overflow: hidden;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid #c8dde5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(8, 127, 156, .07), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f7fbfc 100%);
  box-shadow: 0 18px 50px rgba(4, 54, 75, .09);
}

.mbbs-uni-media__intro {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr);
  align-items: end;
  gap: 30px;
  margin-bottom: 24px;
}

.mbbs-uni-media__intro h2 {
  max-width: 760px;
}

.mbbs-uni-media__intro p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--mbbs-uni-muted);
}

.mbbs-uni-media__stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid #c9dde5;
  border-radius: 18px;
  background: #fff;
}

.mbbs-uni-media__stats span {
  display: grid;
  min-height: 82px;
  align-content: center;
  padding: 13px;
  border-right: 1px solid #e0ebef;
  border-bottom: 1px solid #e0ebef;
  color: #627b87;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
}

.mbbs-uni-media__stats span:nth-child(2n) {
  border-right: 0;
}

.mbbs-uni-media__stats span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mbbs-uni-media__stats strong {
  color: var(--mbbs-uni-navy);
  font-size: 22px;
  line-height: 1;
}

.mbbs-uni-media__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px;
  border: 1px solid #d5e4e9;
  border-radius: 15px;
  background: #fff;
}

.mbbs-uni-media__filters button {
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: #42606e;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
}

.mbbs-uni-media__filters button span {
  display: inline-flex;
  min-width: 22px;
  min-height: 22px;
  align-items: center;
  justify-content: center;
  margin-left: 5px;
  border-radius: 999px;
  background: #edf4f7;
  color: #52707d;
  font-size: 10px;
}

.mbbs-uni-media__filters button:hover,
.mbbs-uni-media__filters button:focus-visible {
  border-color: #ff9a3e;
  outline: 0;
}

.mbbs-uni-media__filters button.is-active {
  background: var(--mbbs-uni-navy);
  color: #fff;
  box-shadow: 0 7px 18px rgba(3, 63, 85, .16);
}

.mbbs-uni-media__filters button.is-active span {
  background: rgba(255, 255, 255, .16);
  color: #fff;
}

.mbbs-uni-media__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 15px;
}

.mbbs-uni-media__item {
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid #d6e4e9;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 27px rgba(4, 54, 75, .1);
  transition: transform .2s ease, box-shadow .2s ease;
}

.mbbs-uni-media__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 32px rgba(4, 54, 75, .12);
}

.mbbs-uni-media__item--featured {
  grid-column: span 2;
}

.mbbs-uni-media__item:only-child {
  grid-column: 1 / -1;
}

.mbbs-uni-media__item:only-child .mbbs-uni-media__open {
  height: clamp(280px, 42vw, 520px);
}

.mbbs-uni-media__open {
  position: relative;
  display: block;
  width: 100%;
  height: 230px;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: #cbdbe1;
  cursor: zoom-in;
}

.mbbs-uni-media__item--featured .mbbs-uni-media__open {
  height: 330px;
}

.mbbs-uni-media__open img {
  width: 100%;
  height: 100% !important;
  margin: 0;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.07) brightness(1.015);
  transition: transform .35s ease, filter .35s ease;
}

.mbbs-uni-media__open:hover img,
.mbbs-uni-media__open:focus-visible img {
  transform: scale(1.025);
  filter: contrast(1.1) saturate(1.08) brightness(1.02);
}

.mbbs-uni-hero__media img {
  filter: contrast(1.075) saturate(1.065) brightness(1.015);
}

.mbbs-uni-media__open:focus-visible {
  outline: 4px solid #ff9a3e;
  outline-offset: -4px;
}

.mbbs-uni-media__open > span {
  position: absolute;
  right: 11px;
  bottom: 11px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  background: rgba(3, 45, 62, .82);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.mbbs-uni-media__item figcaption {
  display: grid;
  gap: 5px;
  min-height: 132px;
  align-content: start;
  padding: 15px 16px 17px;
}

.mbbs-uni-media__item figcaption > span {
  color: var(--mbbs-uni-orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.mbbs-uni-media__item figcaption strong {
  color: var(--mbbs-uni-navy);
  font-size: 16px;
  line-height: 1.25;
}

.mbbs-uni-media__item figcaption small {
  color: #3e5d6a;
  font-size: 12px;
  line-height: 1.55;
}

.mbbs-uni-media__note {
  margin-top: 18px;
  padding: 15px 17px;
  border-left: 4px solid var(--mbbs-uni-orange);
  border-radius: 12px;
  background: #fff7ee;
  color: #4f6975;
  font-size: 12px;
  line-height: 1.65;
}

.mbbs-uni-media__note strong {
  color: var(--mbbs-uni-navy);
}

.mbbs-uni-media__note a {
  color: #0b6b86;
  font-weight: 800;
}

.mbbs-uni-media-dialog {
  width: min(1050px, calc(100vw - 24px));
  max-width: none;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38);
}

.mbbs-uni-media-dialog::backdrop {
  background: rgba(0, 28, 39, .84);
  backdrop-filter: blur(5px);
}

.mbbs-uni-media-dialog__close {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 50%;
  background: rgba(3, 45, 62, .84);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 27px;
  line-height: 1;
}

.mbbs-uni-media-dialog__close:focus-visible {
  outline: 3px solid #ff9a3e;
  outline-offset: 2px;
}

.mbbs-uni-media-dialog__stage {
  display: grid;
  min-height: 300px;
  max-height: min(72vh, 760px);
  place-items: center;
  overflow: hidden;
  background: #052f40;
}

.mbbs-uni-media-dialog__stage img {
  width: 100%;
  height: 100%;
  max-height: min(72vh, 760px);
  margin: 0;
  filter: contrast(1.035) saturate(1.03) brightness(1.01);
  object-fit: contain;
}

.mbbs-uni-media-dialog__copy {
  padding: 16px 20px 19px;
}

.mbbs-uni-media-dialog__copy strong {
  color: var(--mbbs-uni-navy);
  font-size: 18px;
}

.mbbs-uni-media-dialog__copy p {
  margin: 4px 0 0;
  color: #617985;
  font-size: 12px;
}

body.mbbs-gallery-dialog-open {
  overflow: hidden;
}

.mbbs-campus-showcase {
  box-sizing: border-box;
  width: min(1280px, calc(100% - 32px));
  margin: clamp(28px, 5vw, 64px) auto;
  padding: clamp(22px, 3.6vw, 44px);
  border: 1px solid #c9dde5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 128, 0, .13), transparent 30%),
    linear-gradient(145deg, #063f55 0%, #062f42 100%);
  box-shadow: 0 22px 55px rgba(3, 47, 65, .17);
  color: #fff;
}

.mbbs-campus-showcase *,
.mbbs-campus-showcase *::before,
.mbbs-campus-showcase *::after {
  box-sizing: border-box;
}

.mbbs-campus-showcase__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 24px;
}

.mbbs-campus-showcase__head > div > span {
  display: block;
  margin-bottom: 8px;
  color: #ffb464;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
}

.mbbs-campus-showcase__head h2 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(25px, 3vw, 42px);
  line-height: 1.08;
}

.mbbs-campus-showcase__head p {
  max-width: 820px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.65;
}

.mbbs-campus-showcase__head > a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #ff8100;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.mbbs-campus-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.mbbs-campus-showcase__card {
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 24, 34, .16);
  color: #083e52;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.mbbs-campus-showcase__card:hover,
.mbbs-campus-showcase__card:focus-visible {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 16px 34px rgba(0, 18, 27, .24);
  outline: 3px solid #ff9a3e;
  outline-offset: 2px;
}

.mbbs-campus-showcase__card img {
  display: block;
  width: 100%;
  height: 176px !important;
  margin: 0;
  border-bottom: 1px solid #d7e4e9;
  filter: contrast(1.08) saturate(1.07) brightness(1.015);
  object-fit: cover;
  transition: filter .3s ease, transform .3s ease;
}

.mbbs-campus-showcase__card:hover img,
.mbbs-campus-showcase__card:focus-visible img {
  filter: contrast(1.1) saturate(1.08) brightness(1.02);
  transform: scale(1.015);
}

.mbbs-campus-showcase__card > span {
  display: grid;
  gap: 4px;
  min-height: 74px;
  align-content: center;
  padding: 12px 13px 14px;
}

.mbbs-campus-showcase__card strong {
  color: #083e52;
  font-size: 14px;
  line-height: 1.25;
}

.mbbs-campus-showcase__card small {
  color: #58717d;
  font-size: 10px;
  font-weight: 750;
}

@media (max-width: 900px) {
  .mbbs-uni-media__intro {
    grid-template-columns: 1fr;
  }

  .mbbs-uni-media__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mbbs-uni-media__item--featured {
    grid-column: span 2;
  }

  .mbbs-campus-showcase__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .mbbs-campus-showcase__head > a {
    justify-self: start;
  }

  .mbbs-campus-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .mbbs-uni-media {
    padding: 20px 14px;
    border-radius: 22px;
  }

  .mbbs-uni-media__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mbbs-uni-media__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 5px;
    scroll-snap-type: x proximity;
  }

  .mbbs-uni-media__filters button {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .mbbs-uni-media__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .mbbs-uni-media__item--featured {
    grid-column: auto;
  }

  .mbbs-uni-media__item:only-child {
    grid-column: auto;
  }

  .mbbs-uni-media__open,
  .mbbs-uni-media__item--featured .mbbs-uni-media__open {
    height: 230px;
  }

  .mbbs-uni-media-dialog__copy {
    padding-right: 54px;
  }

  .mbbs-campus-showcase {
    width: calc(100% - 20px);
    padding: 20px 12px;
    border-radius: 22px;
  }

  .mbbs-campus-showcase__head {
    gap: 16px;
    margin-bottom: 17px;
  }

  .mbbs-campus-showcase__head > a {
    width: 100%;
  }

  .mbbs-campus-showcase__grid {
    gap: 9px;
  }

  .mbbs-campus-showcase__card {
    border-radius: 13px;
  }

  .mbbs-campus-showcase__card img {
    height: 120px !important;
  }

  .mbbs-campus-showcase__card > span {
    min-height: 80px;
    padding: 10px;
  }

  .mbbs-campus-showcase__card strong {
    font-size: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mbbs-uni-media__item,
  .mbbs-uni-media__open img,
  .mbbs-campus-showcase__card {
    transition: none;
  }
}

/* UrduSky university reading layout and reusable admission sidebar. */
.mbbs-urdusky-university-page {
  --mbbs-uni-navy: #073f54;
  --mbbs-uni-orange: #f47b20;
  --mbbs-uni-muted: #506c78;
  --mbbs-uni-line: #d9e6eb;
  --mbbs-uni-soft: #f5fafb;
}

.mbbs-urdu-uni-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 330px);
  align-items: start;
  gap: clamp(24px, 3vw, 42px);
  width: 100%;
}

.mbbs-urdu-uni-article {
  min-width: 0;
}

.mbbs-urdu-uni-article > :first-child {
  margin-top: 0;
}

.mbbs-urdu-uni-article h1 {
  margin: 0 0 22px;
  color: var(--mbbs-uni-navy) !important;
  font-family: inherit !important;
  font-size: clamp(34px, 4vw, 56px) !important;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  text-align: left !important;
  text-wrap: balance;
}

.mbbs-urdu-uni-article h2,
.mbbs-urdu-uni-article h3 {
  color: var(--mbbs-uni-navy);
  text-wrap: balance;
}

.mbbs-urdu-uni-article p,
.mbbs-urdu-uni-article li {
  color: #274954;
  line-height: 1.75;
  text-align: left !important;
}

.mbbs-urdusky-university-page .wHelp-multi {
  display: none !important;
}

.mbbs-urdu-uni-article .fusion-fullwidth {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.mbbs-urdu-uni-heading {
  margin-bottom: 28px;
  padding: clamp(25px, 4vw, 44px);
  border: 1px solid #cfe0e6;
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(244, 123, 32, .13), transparent 34%),
    linear-gradient(135deg, #f7fcfd 0%, #fff 72%);
  box-shadow: 0 18px 44px rgba(7, 63, 84, .08);
}

.mbbs-urdu-uni-heading > span {
  display: block;
  margin-bottom: 10px;
  color: var(--mbbs-uni-orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
}

.mbbs-urdu-uni-heading h1 {
  margin-bottom: 14px;
}

.mbbs-urdu-uni-heading p {
  max-width: 760px;
  margin: 0;
  color: var(--mbbs-uni-muted);
  font-size: 16px;
}

.mbbs-urdu-uni-masthead {
  display: grid;
  grid-template-columns: minmax(260px, .86fr) minmax(0, 1.14fr);
  min-height: 410px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid #bcd4dd;
  border-radius: 28px;
  background: #063f55;
  box-shadow: 0 22px 56px rgba(4, 54, 75, .16);
}

.mbbs-urdu-uni-masthead__media {
  position: relative;
  min-height: 410px;
  margin: 0;
  overflow: hidden;
  background: #d8e6eb;
}

.mbbs-urdu-uni-masthead__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(3, 45, 62, .02) 42%, rgba(3, 45, 62, .54) 100%);
  content: '';
}

.mbbs-urdu-uni-masthead__media img {
  width: 100%;
  height: 100% !important;
  min-height: 410px;
  margin: 0;
  object-fit: cover;
  filter: contrast(1.07) saturate(1.06) brightness(1.015);
}

.mbbs-urdu-uni-masthead__media figcaption {
  position: absolute;
  z-index: 1;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(3, 45, 62, .78);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.mbbs-urdu-uni-masthead__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 48px);
  background:
    radial-gradient(circle at 100% 0, rgba(8, 127, 156, .48), transparent 44%),
    linear-gradient(145deg, #074b62 0%, #032d3e 100%);
}

.mbbs-urdu-uni-masthead__content > span {
  margin-bottom: 9px;
  color: #ffad62;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .14em;
}

.mbbs-urdu-uni-article .mbbs-urdu-uni-masthead h1 {
  margin-bottom: 14px;
  color: #fff !important;
  font-size: clamp(31px, 4vw, 49px) !important;
  line-height: 1.06;
}

.mbbs-urdu-uni-article .mbbs-urdu-uni-masthead p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  line-height: 1.68;
}

.mbbs-urdu-uni-masthead__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.mbbs-urdu-uni-masthead__actions a {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.mbbs-urdu-uni-masthead__actions a:hover,
.mbbs-urdu-uni-masthead__actions a:focus-visible {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.mbbs-urdu-uni-masthead__actions .mbbs-urdu-uni-masthead__primary {
  border-color: #f47b20;
  background: #f47b20;
  box-shadow: 0 9px 22px rgba(244, 123, 32, .24);
}

.mbbs-urdu-uni-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 15px;
  min-width: 0;
}

.mbbs-urdu-uni-sidebar section,
.mbbs-urdu-uni-sidebar nav {
  margin: 0;
}

.mbbs-urdu-uni-sidebar__lead,
.mbbs-urdu-uni-sidebar__card {
  overflow: hidden;
  border: 1px solid var(--mbbs-uni-line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(7, 63, 84, .09);
}

.mbbs-urdu-uni-sidebar__lead {
  padding: 24px;
  border: 0;
  background:
    radial-gradient(circle at 110% -10%, rgba(255, 176, 92, .32), transparent 38%),
    linear-gradient(145deg, #06445b 0%, #08728a 100%);
  color: #fff;
}

.mbbs-urdu-uni-sidebar__lead > span {
  display: block;
  margin-bottom: 9px;
  color: #ffc17b;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .13em;
}

.mbbs-urdu-uni-sidebar__lead h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 25px;
  line-height: 1.15;
}

.mbbs-urdu-uni-sidebar__lead p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.65;
}

.mbbs-urdu-uni-sidebar__primary,
.mbbs-urdu-uni-sidebar__secondary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
}

.mbbs-urdu-uni-sidebar__primary {
  background: #f47b20;
  color: #fff;
  box-shadow: 0 9px 22px rgba(244, 123, 32, .25);
}

.mbbs-urdu-uni-sidebar__secondary {
  margin-top: 9px;
  border: 1px solid rgba(255, 255, 255, .4);
  color: #fff;
}

.mbbs-urdu-uni-sidebar__primary:hover,
.mbbs-urdu-uni-sidebar__primary:focus-visible {
  background: #db6512;
  color: #fff;
}

.mbbs-urdu-uni-sidebar__secondary:hover,
.mbbs-urdu-uni-sidebar__secondary:focus-visible {
  background: rgba(255, 255, 255, .12);
  color: #fff;
}

.mbbs-urdu-uni-sidebar__card {
  padding: 20px;
}

.mbbs-urdu-uni-sidebar__card h3 {
  margin: 0 0 12px;
  color: var(--mbbs-uni-navy);
  font-size: 17px;
  line-height: 1.25;
}

.mbbs-urdu-uni-sidebar__card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mbbs-urdu-uni-sidebar__card li {
  margin: 0;
  border-top: 1px solid #e6eef1;
}

.mbbs-urdu-uni-sidebar__card li:first-child {
  border-top: 0;
}

.mbbs-urdu-uni-sidebar__card a {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #174f62;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
  text-decoration: none;
}

.mbbs-urdu-uni-sidebar__card a span {
  flex: 0 0 auto;
  color: var(--mbbs-uni-orange);
  font-size: 17px;
}

.mbbs-urdu-uni-sidebar__card a:hover,
.mbbs-urdu-uni-sidebar__card a:focus-visible {
  color: var(--mbbs-uni-orange);
}

.mbbs-urdu-uni-sidebar__checklist {
  background: var(--mbbs-uni-soft);
}

.mbbs-urdu-uni-sidebar__checklist ul {
  gap: 10px;
}

.mbbs-urdu-uni-sidebar__checklist li {
  position: relative;
  padding: 0 0 0 24px;
  border: 0;
  color: #3e5c67;
  font-size: 12px;
  line-height: 1.5;
}

.mbbs-urdu-uni-sidebar__checklist li::before {
  position: absolute;
  top: 1px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #dceff0;
  color: #08728a;
  content: '✓';
  font-size: 11px;
  font-weight: 900;
  line-height: 17px;
  text-align: center;
}

.mbbs-urdusky-university-page .mbbs-uni-media {
  margin-top: 36px;
}

@media (max-width: 1050px) {
  .mbbs-urdu-uni-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 22px;
  }
}

@media (max-width: 900px) {
  .mbbs-urdu-uni-layout {
    grid-template-columns: 1fr;
  }

  .mbbs-urdu-uni-masthead {
    grid-template-columns: 1fr;
  }

  .mbbs-urdu-uni-masthead__media,
  .mbbs-urdu-uni-masthead__media img {
    min-height: 310px;
    max-height: 390px;
  }

  .mbbs-urdu-uni-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mbbs-urdu-uni-sidebar__lead {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .mbbs-urdu-uni-article h1 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .mbbs-urdu-uni-masthead {
    min-height: 0;
    border-radius: 21px;
  }

  .mbbs-urdu-uni-masthead__media,
  .mbbs-urdu-uni-masthead__media img {
    min-height: 230px;
    max-height: 280px;
  }

  .mbbs-urdu-uni-masthead__content {
    padding: 24px 18px;
  }

  .mbbs-urdu-uni-masthead__actions,
  .mbbs-urdu-uni-masthead__actions a {
    width: 100%;
  }

  .mbbs-urdu-uni-heading {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .mbbs-urdu-uni-sidebar {
    grid-template-columns: 1fr;
  }

  .mbbs-urdu-uni-sidebar__lead,
  .mbbs-urdu-uni-sidebar__card {
    border-radius: 17px;
  }
}
