* {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #0f0f10;
  color: #f3f3f4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
  pointer-events: none;
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
.topbar.is-hidden {
  transform: translateY(-100%);
}
.topbar > * {
  pointer-events: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
}

#brandBadge {
  width: 150px;
}
#brandBadge img {
  width: 100%;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0.92;
}
.nav a:hover {
  opacity: 1;
}
.nav a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

/* Hamburger button - hidden on desktop */
.hamburger-btn {
  display: none;
}

.mobile-nav {
  display: none;
}

/* HERO: no overlay, no text/buttons except mute */
.hero {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-bgvideo {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .hero-bgvideo video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

/* Tablet/iPad: reduce min-height to minimize black space */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    min-height: 50vh;
  }
  .hero .hero-bgvideo video {
    object-fit: contain;
    transform: none;
  }
  .nav {
    gap: 16px;
  }
  .nav a {
    font-size: 10px;
    letter-spacing: 0.15em;
  }
}

/* Hero controls: lower-right */
.hero-controls {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  display: flex;
  gap: 12px;
  align-items: center;
}

.mute-btn,
.fullscreen-btn {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background 0.2s, border-color 0.2s;
}

.mute-btn:hover,
.fullscreen-btn:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.38);
}

.mute-btn:focus-visible,
.fullscreen-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

/* Layout */
.section {
  padding: 54px 0 62px;
}

.wrap {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

/* Tabs */
.tabs {
  display: flex;
  gap: 18px;
  align-items: flex-end;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 26px;
}

.tab-btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
}
.tab-btn:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}
.tab-btn .tab-meta {
  margin-left: 10px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 11px;
}
.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 2px;
  background: transparent;
  transition: background 200ms ease;
}
.tab-btn:hover {
  color: rgba(255, 255, 255, 0.9);
}
.tab-btn.is-active {
  color: rgba(255, 255, 255, 0.96);
}
.tab-btn.is-active::after {
  background: rgba(255, 255, 255, 0.9);
}
.tab-btn.is-active .tab-meta {
  color: rgba(255, 255, 255, 0.6);
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 44px;
}

.card {
  cursor: pointer;
  user-select: none;
}
.card:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}
.card .thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #1a1a1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.card .thumb.is-vertical {
  aspect-ratio: 9/16;
}
.card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 300ms ease, filter 300ms ease;
  filter: brightness(0.92);
}
.card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.card .play .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.75);
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(2px);
}
.card .play i {
  font-size: 26px;
  margin-left: 3px;
  color: rgba(255, 255, 255, 0.92);
}
.card:hover .thumb img {
  transform: scale(1.05);
  filter: brightness(1);
}
.card:hover .play .badge {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.95);
}
.card h3 {
  margin: 18px 0 10px;
  font-size: 18px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}
.card .tag {
  color: #8f8f93;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 14px;
  font-weight: 600;
}
.card .desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

/* Footer panel */
.footer-panel {
  background: #202022;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 0;
}

.footer-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.footer-top-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-team-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.team-grid .team-member {
  margin: 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.contact-col {
  align-self: start;
  scroll-margin-top: 80px;
}
.contact-col .subscribe {
  margin-top: 0;
}
.contact-col .subscribe h4 {
  display: none;
}

.footer-kicker {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 14px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.8;
  margin: 0;
}
.footer-col:first-child .footer-copy {
  max-width: 100%;
}
.footer-copy h3 {
  margin: 24px 0 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.footer-copy p {
  margin: 0 0 16px;
}
.footer-copy p:last-child {
  margin-bottom: 0;
}
.footer-copy strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.footer-copy a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: text-decoration-color 200ms ease, color 200ms ease;
}
.footer-copy a:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}
.footer-copy .team-member {
  margin: 20px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.footer-copy .team-member:first-child {
  margin-top: 0;
}
.footer-copy .team-member .team-image,
.team-grid .team-member .team-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1a1b;
}
.footer-copy .team-member .team-image img,
.team-grid .team-member .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.footer-copy .team-member .team-image .team-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1b;
  color: #8f8f93;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-copy .team-member .team-text,
.team-grid .team-member .team-text {
  flex: 1;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.8;
}
.footer-copy .team-member .team-text p,
.team-grid .team-member .team-text p {
  margin: 0 0 16px;
}
.footer-copy .team-member .team-text p:last-child,
.team-grid .team-member .team-text p:last-child {
  margin-bottom: 0;
}
.footer-copy .team-member .team-text strong,
.team-grid .team-member .team-text strong {
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}
.footer-copy .team-member .team-text a,
.team-grid .team-member .team-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: text-decoration-color 200ms ease, color 200ms ease;
}
.footer-copy .team-member .team-text a:hover,
.team-grid .team-member .team-text a:hover {
  color: rgba(255, 255, 255, 0.95);
  text-decoration-color: rgba(255, 255, 255, 0.6);
}

.subscribe {
  margin-top: 0;
}
.subscribe h4 {
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
}
.contact-col .subscribe h4 {
  display: none;
}
.subscribe small {
  display: block;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
}
.subscribe .form-row {
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.subscribe .form-row:last-of-type {
  margin-bottom: 0;
}
.subscribe .form-row input,
.subscribe .form-row textarea {
  flex: 1 1 280px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #f3f3f4;
  outline: none;
  border-radius: 2px;
  font-family: inherit;
  font-size: 14px;
  line-height: 1.5;
  resize: vertical;
}
.subscribe .form-row input {
  height: 46px;
}
.subscribe .form-row textarea {
  min-height: 120px;
}
.subscribe .form-row input::placeholder,
.subscribe .form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}
.subscribe .form-row input:focus-visible,
.subscribe .form-row textarea:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
  border-color: rgba(255, 255, 255, 0.3);
}
.subscribe .form-row button {
  height: 46px;
  padding: 0 26px;
  border: 0;
  background: #000;
  color: #fff;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  border-radius: 2px;
  cursor: pointer;
  font-size: 12px;
  transition: background 200ms ease;
}
.subscribe .form-row button:hover {
  background: #0b0b0b;
}
.subscribe .form-row button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}
.subscribe .form-row button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.subscribe .form-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.5;
  display: none;
}
.subscribe .form-message.is-visible {
  display: block;
}
.subscribe .form-message.is-success {
  background: rgba(0, 128, 0, 0.15);
  border: 1px solid rgba(0, 128, 0, 0.3);
  color: rgba(255, 255, 255, 0.9);
}
.subscribe .form-message.is-error {
  background: rgba(200, 0, 0, 0.15);
  border: 1px solid rgba(200, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.9);
}
.subscribe .social {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.subscribe .social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
}
.subscribe .social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgb(255, 255, 255);
}
.subscribe .social a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

/* Bottom footer */
.bottom {
  padding: 26px 0 34px;
  text-align: center;
  color: rgba(255, 255, 255, 0.52);
}
.bottom-links {
  display: flex;
  gap: 26px;
  justify-content: center;
  flex-wrap: wrap;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 11px;
  margin-bottom: 16px;
}
.bottom-links a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}

.addr {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
  line-height: 1.8;
}

.copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}
.modal.is-open {
  display: block;
}
.modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}
.modal .modal-shell {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.modal .modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  backdrop-filter: blur(4px);
}
.modal .modal-close:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 255, 255, 0.35);
}
.modal .modal-close:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.45);
  outline-offset: 3px;
}
.modal .modal-content {
  width: min(1200px, 96vw);
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.modal .modal-content iframe, .modal .modal-content video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Text Modal */
.modal-text-shell {
  max-height: 90vh;
}

.modal-text-content {
  width: min(800px, 90vw);
  max-height: 85vh;
  background: #1a1a1b;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  padding: 44px 52px;
  overflow-y: auto;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.modal-text-content h2 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.modal-text-content h3 {
  margin: 32px 0 14px 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.modal-text-content p {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.modal-text-content ul {
  margin: 0 0 18px;
  padding-left: 24px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

.modal-text-content li {
  margin-bottom: 10px;
}

.modal-text-content a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  transition: text-decoration-color 200ms ease;
}

.modal-text-content a:hover {
  text-decoration-color: rgba(255, 255, 255, 0.7);
}

.modal-text-content strong {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

/* Responsive */
@media (max-width: 1020px) {
  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-layout {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }
  .footer-top-row {
    display: contents;
  }
  .footer-top-row .footer-col:first-child {
    order: 1;
    width: 100%;
  }
  .footer-top-row .contact-col {
    order: 3;
    width: 100%;
  }
  .footer-team-row {
    order: 2;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .topbar {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.1));
  }
}
@media (max-width: 768px) {
  .topbar {
    padding: 14px 16px;
    background: rgba(0, 0, 0, 0.85);
  }
  .brand {
    min-width: auto;
  }
  #brandBadge {
    width: 120px;
  }
  .hamburger-btn {
    display: flex !important;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    cursor: pointer;
    padding: 0;
    color: rgba(255, 255, 255, 0.95);
    transition: background 0.2s, border-color 0.2s;
  }
  .hamburger-btn:hover,
  .hamburger-btn:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.35);
    outline: none;
  }
  .hamburger-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 2px;
  }
  .hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 20px;
  }
  .hamburger-icon span {
    display: block;
    height: 2px;
    width: 100%;
    background: currentColor;
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .hamburger-btn[aria-expanded="true"] .hamburger-icon span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger-btn[aria-expanded="true"] .hamburger-icon span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-btn[aria-expanded="true"] .hamburger-icon span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .mobile-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 16px;
    display: flex !important;
    flex-direction: column;
    gap: 0;
    z-index: 49;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .mobile-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-nav a {
    display: block;
    padding: 16px 0;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: color 0.2s;
  }
  .mobile-nav a:last-child {
    border-bottom: none;
  }
  .mobile-nav a:hover,
  .mobile-nav a:focus {
    color: rgba(255, 255, 255, 1);
  }
  .mobile-nav a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: -2px;
  }
  .hero {
    min-height: auto;
    height: auto;
    max-height: 100vh;
    padding-top: 60px;
  }
  .hero .hero-bgvideo {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
  }
  .hero .hero-bgvideo video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: none;
  }
  .hero-controls {
    right: 12px;
    bottom: 12px;
    gap: 8px;
  }
  .mute-btn,
  .fullscreen-btn {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .nav {
    display: none !important;
  }
  .modal-shell {
    padding: 14px;
  }
  .modal-close {
    top: 12px;
    right: 12px;
  }
  .modal-text-content {
    padding: 32px 28px;
    max-height: 80vh;
  }
  .modal-text-content h2 {
    font-size: 24px;
  }
  .modal-text-content h3 {
    font-size: 16px;
    margin-top: 28px;
  }
  .footer-copy .team-member {
    flex-direction: column;
    gap: 14px;
  }
  .footer-copy .team-member .team-image {
    width: 70px;
    height: 70px;
  }
}

/*# sourceMappingURL=style.css.map */
