:root {
  --warm-gray-50: #f7f5f2;
  --warm-gray-100: #eeece8;
  --warm-gray-200: #e8e6e3;
  --warm-gray-400: #b1ada7;
  --warm-gray-600: #8a8580;
  --cool-gray-500: #656e7c;
  --cool-gray-800: #181e28;
  --Brand-Blue-500: #0e6edb;
  --white: #ffffff;
  --due: #d93025;
  --tag-bg: #e6f0f7;
  --stamp-bg: #fef6e6;
  --stamp-fg: #b95000;
  --font: Graphik, "Graphik Web", Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; }
html { font-size: 16px; }
body {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--cool-gray-800);
  background: var(--warm-gray-50);
  -webkit-font-smoothing: antialiased;
}

button, a, input { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
a { text-decoration: none; }

h4, .heading--4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.333;
  letter-spacing: -0.24px;
  color: var(--cool-gray-800);
}
h5, .heading--5 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: var(--cool-gray-800);
}
.p-text--2 {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.bottom-space { margin-bottom: 24px; }

.row {
  display: flex;
  flex-wrap: wrap;
  max-width: 106.25rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}
.gbs-page-body > .row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}
.gbs-page-body > .row > .columns {
  padding-left: 0;
  padding-right: 0;
  width: auto;
  max-width: none;
  flex: none;
  min-width: 0;
}
.gbs-page-body > .row > .columns.widget:not(.widget--v3) {
  padding: 32px;
}
.gbs-page-body > .row > .large-4 { grid-column: span 1; }
.gbs-page-body > .row > .large-8 { grid-column: span 2; }
.gbs-page-body > .row > .large-12 { grid-column: span 3; }
.row .row {
  width: calc(100% + 1.875rem);
  max-width: none;
  margin-left: -0.9375rem;
  margin-right: -0.9375rem;
  padding: 0;
  gap: 0;
}
.columns {
  flex: 0 0 auto;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  min-width: 0;
}
.large-12 { width: 100%; flex-basis: 100%; max-width: 100%; }
.large-8 { width: 66.66667%; flex-basis: 66.66667%; max-width: 66.66667%; }
.large-6 { width: 50%; flex-basis: 50%; max-width: 50%; }
.large-4 { width: 33.33333%; flex-basis: 33.33333%; max-width: 33.33333%; }
.small-3 { width: 25%; flex-basis: 25%; max-width: 25%; }
.small-9 { width: 75%; flex-basis: 75%; max-width: 75%; }
.adjust-columns { align-items: stretch; }
.adjust-columns > .columns {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
  height: auto;
}

.header {
  padding: 12px 0;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: var(--warm-gray-50);
  border-bottom: 1px solid var(--warm-gray-200);
  z-index: 200;
}
.mobile-btn {
  display: none;
  width: 41px;
  height: 39px;
  margin-right: 8px;
  place-items: center;
  background: transparent;
}
.gbs-page-body { padding: 88px 0 80px; }

.soc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.soc-header__block { display: flex; align-items: center; }
.soc-header__home {
  display: flex;
  align-items: center;
  margin: 0 60px 0 0;
  line-height: 0;
}
.soc-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.soc-nav > li { margin: 0 40px 0 0; }
.soc-nav__item,
.soc-header__panel { position: relative; }
.soc-nav__btn {
  position: relative;
  padding: 0 18px 0 0;
  font-size: 1rem;
  font-weight: 400;
}
.soc-nav__item.is-open > .soc-nav__btn,
.soc-header__panel.is-open > .soc-nav__btn { color: var(--Brand-Blue-500); }
.soc-nav__drop {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 210;
  background: var(--white);
  border: 1px solid var(--warm-gray-200);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(24, 30, 40, 0.12);
  max-height: calc(100vh - 96px);
  overflow: auto;
}
.soc-nav__item > .soc-nav__drop {
  position: fixed;
  left: 0;
  right: 0;
  top: 64px;
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}
.soc-nav__drop--right,
.soc-nav__drop--panel {
  left: auto;
  right: 0;
  width: min(720px, calc(100vw - 24px));
}
.soc-nav__drop--panel { width: 280px; }
.soc-nav__item.is-open > .soc-nav__drop,
.soc-header__panel.is-open > .soc-nav__drop { display: block; }
.soc-nav__drop-inner {
  padding: 24px 28px 28px;
  display: grid;
  gap: 8px 40px;
  max-width: 1440px;
  margin: 0 auto;
}
.soc-nav__drop-inner--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.soc-nav__drop-inner--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.main-nav__menu {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.main-nav__menu-category,
.main-nav__menu .main-nav__menu-category {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--cool-gray-800);
}
.main-nav__menu a {
  display: block;
  padding: 4px 0;
  font-size: 0.875rem;
  color: var(--cool-gray-700);
}
.main-nav__menu a:hover { color: var(--Brand-Blue-500); }
.mylinks { padding: 18px 20px 20px; }
.mylinks__title { margin: 0 0 8px; font-size: 1rem; }
.mylinks__help { font-size: 0.8125rem; }
.mylinks__empty { margin: 16px 0 8px; font-weight: 600; }
.soc-header__profile-list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
}
.soc-header__profile-list li { padding: 0 16px; }
.soc-header__profile-name { margin: 0 0 8px; font-weight: 600; }
.soc-header__profile-list a,
.soc-header__profile-list button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 0;
  font: inherit;
  color: var(--cool-gray-700);
  background: transparent;
}
.soc-header__profile-list a:hover,
.soc-header__profile-list button:hover { color: var(--Brand-Blue-500); }
.soc-header__profile-pic {
  width: 40px;
  height: 40px;
  margin: 0 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 100%;
  cursor: pointer;
  background:
    radial-gradient(circle at 50% 38%, #9aa3af 0 22%, transparent 23%),
    radial-gradient(circle at 50% 92%, #9aa3af 0 38%, transparent 39%),
    #cdcdcd;
}
.soc-nav__btn--arrow::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.soc-nav__btn:hover { color: var(--Brand-Blue-500); }

.soc-header__search-wrap {
  position: relative;
  width: 240px;
  height: 40px;
  border-radius: 8px;
  background: var(--warm-gray-100);
}
.soc-header__search-wrap::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 14px;
  width: 14px;
  height: 14px;
  border: 1.6px solid var(--cool-gray-500);
  border-radius: 50%;
}
.soc-header__search-wrap::after {
  content: "";
  position: absolute;
  top: 24px;
  left: 26px;
  width: 6px;
  height: 1.6px;
  background: var(--cool-gray-500);
  transform: rotate(45deg);
}
.soc-header__search-wrap input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 16px 10px 40px;
}
.soc-header__search-wrap input::placeholder { color: var(--warm-gray-600); }
.soc-header__lang { margin: 0 0 0 35px; }
.soc-header__icon {
  width: 40px;
  height: 40px;
  margin: 0 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 8px;
}
.soc-header__icon:hover { background: var(--warm-gray-100); }
@media screen and (min-width: 81.25em) {
  .soc-header__search-wrap { width: 335px; }
}

.widget {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  height: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
.adjust-columns > .widget {
  align-self: stretch;
}
.widget .row {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  flex: 1;
  align-items: stretch;
}
.widget .row > .columns {
  display: flex;
  flex-direction: column;
}
.widget--v3 {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.corp-tools-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.corp-tools-ui {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100%;
  z-index: 10;
  padding: 0;
  border: 0;
  cursor: default;
}
.corp-tools-ui[hidden] { display: none; }
.corp-tools-ui--left {
  left: 0;
  background: linear-gradient(to right, var(--warm-gray-50), transparent);
}
.corp-tools-ui--right {
  right: 60px;
  background: linear-gradient(to left, var(--warm-gray-50), transparent);
}
.corp-tools {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  min-width: 0;
  border-right: 1px solid var(--warm-gray-200);
}
.corp-tools::-webkit-scrollbar { display: none; }
.corp-tools__item { margin: 0 12px 0 0; flex: 0 0 auto; }
.corp-tools-list > .corp-tools__item:first-child {
  padding-left: 12px;
}
.corp-tools__item--sticky {
  position: relative;
  z-index: 11;
  flex: 0 0 auto;
  margin: 0;
  padding: 0 12px 0 0.2rem;
  background: var(--warm-gray-50);
}
.corp-tools__item--sticky::after {
  content: "";
  position: absolute;
  top: -0.01rem;
  right: 0;
  width: 0;
  height: calc(46px + 0.4rem);
  border-right: 1px solid var(--warm-gray-200);
  pointer-events: none;
}
.corp-tools__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px 12px 18px;
  white-space: nowrap;
  background: var(--white);
  border-radius: 8px;
  font-weight: 400;
}
.corp-tools__link:hover { background: var(--warm-gray-100); }
.corp-tools__link span {
  width: 32px;
  height: 22px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 4px 0 0;
  position: relative;
}
.corp-tools__link span img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.corp-tools__edit {
  width: 54px;
  margin: 0 0 0 12px;
  flex: 0 0 54px;
}
.corp-tools__edit-btn {
  display: flex;
  width: 100%;
  height: 48px;
  justify-content: center;
  align-items: center;
  background: var(--warm-gray-100);
  border-radius: 8px;
}
.corp-tools__edit-btn:hover { background: var(--warm-gray-200); }

.columns > .omnibar {
  background: #fff;
  border: 1px solid #d9e7f8;
  border-radius: 28px;
  box-shadow: 0 8px 28px rgba(26, 115, 232, 0.08);
  padding: 18px 20px 12px;
}
.omnibar form.omnibar { margin: 0; }
.bottom-search-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 10px;
  row-gap: 18px;
}
.prefix-icon {
  display: grid;
  place-items: center;
  color: #5f6368;
  flex: 0 0 auto;
}
.prefix-icon .gemini-logo {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}
.input-and-weaveform-container {
  flex: 1 1 0;
  min-width: 0;
}
.input-and-weaveform-container input {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--cool-gray-800);
  outline: none;
}
.input-and-weaveform-container input::placeholder { color: #80868b; }
.multiline-input-actions-buttons {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 2px;
}
.action-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #3c4043;
}
.action-icon:hover { background: #f1f3f4; }
.actions-gap { flex: 1 1 auto; min-width: 12px; }
.action-model-selector { padding: 4px 6px; border-radius: 8px; }
.action-model-selector:hover { background: #f1f3f4; }
.model-selector-label-container {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #3c4043;
}
.model-selector-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
}
.bluedot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1a73e8;
}
.send-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e8eaed;
  color: #80868b;
  display: grid;
  place-items: center;
}
.send-button:not(:disabled) {
  background: #e8eaed;
  color: #3c4043;
}
.send-button:disabled { cursor: default; }

.news-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 400;
  color: var(--cool-gray-800);
  white-space: nowrap;
}
.view-all:hover,
.news-learn:hover { color: var(--Brand-Blue-500); }
.news-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: 28px;
  align-items: stretch;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
}
.news-hero__img {
  justify-self: stretch;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm-gray-100);
}
.news-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.45s ease;
}
.news-hero__copy {
  justify-self: stretch;
  min-width: 0;
}
.news-hero__copy h3 {
  margin: 0 0 12px;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.32px;
}
.news-hero__title {
  display: block;
  color: inherit;
}
.news-hero__title:hover h3 { color: var(--Brand-Blue-500); }
.news-hero__copy .soc-label {
  margin: 0 0 8px;
}
.news-hero__copy .news-learn { margin-top: 8px; }
.news-kicker {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--Brand-Blue-500);
}
.news-learn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--Brand-Blue-500);
  font-weight: 500;
}
.news-thumbs {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: 16px;
}
.news-thumb {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--warm-gray-200);
  border-radius: 12px;
  background: var(--white);
  color: var(--cool-gray-800);
}
.news-thumb:hover { background: var(--warm-gray-50); }
.news-thumb__img {
  width: 132px;
  height: 88px;
  flex: 0 0 132px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--warm-gray-100);
}
.news-thumb__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.news-thumb h5 {
  margin: 0 0 8px;
  font-size: 1rem;
  line-height: 1.4;
}
.news-thumb__title {
  display: block;
  color: inherit;
}
.news-thumb__title:hover h5 { color: var(--Brand-Blue-500); }
.news-thumb .soc-label { margin: 0; font-size: 0.875rem; }
.soc-stories__read-time { margin: 0 0 4px; }
.soc-stories__tag:hover { color: var(--Brand-Blue-500); }
.news-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.news-search {
  position: relative;
  display: flex;
  align-items: center;
}
.news-search__input {
  width: 240px;
  height: 40px;
  padding: 8px 40px 8px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--warm-gray-100);
  outline: 0;
}
.news-search__input::placeholder { color: var(--warm-gray-600); }
.news-search__btn {
  display: none;
  position: absolute;
  right: 6px;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--cool-gray-800);
}
.news-search__btn.show { display: flex; }
.news-search__btn:hover { background: var(--warm-gray-200); }
.m-l-1 { margin-left: 1rem; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-width: 0;
}
.section-head h4 { min-width: 0; }
.section-head a {
  color: var(--cool-gray-800);
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
}
.section-head a:hover { color: var(--Brand-Blue-500); }

.soc-stories__item { border-left: 0.833px solid var(--warm-gray-200); }
.soc-stories .columns:first-child { border-left: 0; }
.soc-stories__link { display: block; color: var(--cool-gray-800); }
.soc-stories__img {
  width: 100%;
  height: 160px;
  position: relative;
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm-gray-100);
}
.snapshot,
.soc-promotile {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: var(--cool-gray-800);
}
.snapshot__img,
.soc-promotile__img {
  width: 100%;
  aspect-ratio: 788 / 448;
  flex: none;
  height: auto;
  margin: 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--warm-gray-50);
  position: relative;
  min-width: 0;
}
.snapshot__img img,
.soc-promotile__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
.news-hero__img:hover img,
.news-hero:has(.news-hero__title:hover) .news-hero__img img,
.news-thumb__img:hover img,
.news-thumb:has(.news-thumb__title:hover) .news-thumb__img img,
.snapshot:hover .snapshot__img img,
.soc-promotile:hover .soc-promotile__img img {
  transform: scale(1.06);
}
.snapshot h5 {
  font-size: 1rem;
  line-height: 1.45;
  margin: 0 0 10px;
}
.snapshot .soc-label { margin-bottom: 0; }
.soc-stories__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.soc-stories__title { margin: 0 0 11px; }
.soc-label {
  color: var(--cool-gray-500);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 0 0 6px;
}
.soc-label--2 { font-size: 1rem; }
.soc-stories__tag { color: var(--cool-gray-800); font-weight: 700; }
.soc-label span { color: var(--cool-gray-500); }
.name { font-weight: 700; color: var(--cool-gray-500); }
.job { color: var(--cool-gray-500); }

.soc-announcements { overflow: visible; }
.soc-announcements__item { border-top: 1px solid var(--warm-gray-200); }
.soc-announcements__item:first-child { border-top: 0; }
.soc-announcements__btn {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 24px 0;
}
.soc-announcements__item:first-child .soc-announcements__btn { padding-top: 0; }
.soc-announcements__item:last-child .soc-announcements__btn { padding-bottom: 0; }
.soc-announcements__btn:hover { color: var(--Brand-Blue-500); }
.soc-announcements__img {
  margin: 0 16px 0 0;
  flex: 0 0 32px;
}
.soc-announcements__img span {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.soc-announcements__btn h5 { font-size: 1.25rem; }

.overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(24, 30, 40, 0.45);
}
.overlay.is-open { display: flex; }
.overlay__block {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(672px, 100%);
  max-height: min(82vh, 704px);
  overflow: hidden;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(24, 30, 40, 0.18);
  outline: 0;
}
.overlay__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
}
.overlay__close:hover { background: var(--warm-gray-100); }
.overlay__content {
  padding: 28px 32px 32px;
  overflow: auto;
}
.overlay__content h4 {
  margin: 0 40px 12px 0;
  font-size: 1.375rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--cool-gray-800);
}
.overlay__section {
  margin: 18px 0 6px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--cool-gray-800);
}
.overlay__body p {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--cool-gray-700);
}
.overlay__list,
.overlay__body ul {
  margin: 0 0 16px;
  padding: 0 0 0 1.15rem;
}
.overlay__list li,
.overlay__body li {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--cool-gray-700);
}
.overlay__body ul ul { margin: 8px 0 0; }
.overlay__content a { color: var(--Brand-Blue-500); }
.overlay__when { margin: 0 0 12px !important; }
.overlay__chip {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: #e3eefb;
  color: #2563eb;
}
body.overlay-open { overflow: hidden; }

.spotlight__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.spotlight__asset {
  flex: 1 1 52%;
  max-width: 513px;
  min-width: 0;
}
.spotlight__asset-wrap {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  height: 0;
}
.spotlight__asset iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}
.spotlight__content {
  flex: 1 1 40%;
  margin: 0;
  width: auto;
  min-width: 0;
}
.spotlight__content h5 { margin: 0 0 12px; }
.spotlight__description p { margin: 0 0 20px; font-size: 1rem; }

#gmone-messages {
  flex: 1;
  min-width: 0;
}
#gmone-messages .msgauto-inbox--card {
  background: transparent;
  height: 100%;
}
#gmone-messages .msgauto-inbox__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#gmone-messages .msgauto-inbox__item--row {
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--warm-gray-200);
}
#gmone-messages .msgauto-inbox__item--row:first-child {
  padding-top: 0;
  border-top: 0;
}
#gmone-messages .msgauto-inbox__item--row:last-child {
  padding-bottom: 0;
}
#gmone-messages .msgauto-inbox__icon {
  width: 48px;
  height: 48px;
}
#gmone-messages .msgauto-inbox__row-title {
  font-size: 1rem;
  font-weight: 600;
}
#gmone-messages .msgauto-inbox__row-desc {
  font-size: 0.9375rem;
  color: var(--cool-gray-500);
}
#gmone-messages .msgauto-inbox__signin {
  background: var(--Brand-Blue-500);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 16px;
  font-weight: 600;
}
.hub-messages {
  flex: 1;
  min-width: 0;
}
#gmone-messages .msgauto-inbox__pager {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--warm-gray-200);
}
#gmone-messages .msgauto-inbox__pager button {
  background: var(--warm-gray-100);
}
#gmone-messages .msgauto-inbox__pager button:hover:not(:disabled) {
  background: var(--warm-gray-200);
}

.soc-promotile h4,
.soc-promotile h5 { margin: 0 0 8px; font-size: 1.25rem; font-weight: 500; }
.soc-promotile p { margin: 0; color: var(--cool-gray-500); font-size: 1rem; }

.soc-quicklinks h5 { margin: 0 0 20px; }
.soc-quicklinks h5:last-child { margin-bottom: 0; }
.soc-quicklinks__link {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 500;
}
.soc-quicklinks__img {
  width: 24px;
  height: 24px;
  margin: 0 16px 0 0;
  flex: 0 0 24px;
  background: transparent;
  border-radius: 0;
}
.soc-quicklinks__img img {
  width: 100%;
  height: 100%;
  display: block;
}

.campus-maps {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.campus-maps li {
  margin: 0 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.campus-maps li:last-child { margin-bottom: 0; }
.campus-maps li a { text-decoration: none; }
.campus-maps__pipe {
  padding: 0 0 0 16px;
  position: relative;
  margin: 0 0 0 8px;
}
.campus-maps__pipe::before {
  content: "";
  height: 100%;
  width: 1px;
  background: var(--warm-gray-200);
  position: absolute;
  left: 0;
  top: 0;
}
.campus-maps__pipe a svg path { transition: 300ms; }
.campus-maps__pipe a:hover svg path { fill: var(--Brand-Blue-500); }
.widget .row > .columns.hide-for-mobile {
  padding-left: 16px;
  padding-right: 0;
}
.campus-photo {
  margin: 0 0 0 16px;
  border-radius: 12px;
  overflow: hidden;
  flex: none;
  height: auto;
  min-height: 0;
}
.campus-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

#askgm-for-safari {
  position: fixed;
  right: 48px;
  bottom: 48px;
  width: 48px;
  height: 48px;
  z-index: 9999;
}
#askgm-for-safari a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
#askgm-for-safari img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--Brand-Blue-500);
}

@media screen and (max-width: 63.9375em) {
  .mobile-btn { display: grid; }
  .soc-nav { display: none; }
  .header.is-mobile-open .soc-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0;
    padding: 8px 16px 16px;
    background: var(--warm-gray-50);
    border-bottom: 1px solid var(--warm-gray-200);
  }
  .header.is-mobile-open .soc-nav > li { margin: 0 0 4px; }
  .header.is-mobile-open .soc-nav__item > .soc-nav__drop {
    position: static;
    max-height: 55vh;
  }
  .soc-nav__drop-inner--4,
  .soc-nav__drop-inner--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .soc-header__home { margin-right: 16px; }
  .gbs-page-body > .row {
    grid-template-columns: 1fr;
  }
  .gbs-page-body > .row > .large-4,
  .gbs-page-body > .row > .large-8,
  .gbs-page-body > .row > .large-12,
  .large-4, .large-6, .large-8, .large-12, .small-3, .small-9 {
    width: 100%;
    flex: 1 1 100%;
    max-width: 100%;
    grid-column: span 1;
  }
  .news-hero {
    grid-template-columns: 1fr;
  }
  .news-hero__img { min-height: 180px; }
  .news-thumbs { flex-direction: column; }
  .spotlight__item { display: block; }
  .spotlight__asset, .spotlight__content { width: 100%; max-width: none; }
  .spotlight__content { margin: 15px 0 0; }
  .hide-for-mobile { display: none; }
  #askgm-for-safari { right: 32px; bottom: 32px; }
}
