/*
Theme Name: Colbertism
Template: generatepress
Description: GeneratePress child theme for the Colbertism publication
Version: 2.0
*/

:root {
  --wu-dark: #343e47;
  --wu-blue: #2f6df2;
  --wu-link: #2375d6;
  --wu-text: #22252a;
  --wu-border: #e5e7eb;
}

body {
  background: #fff;
  color: var(--wu-text);
  font-family: -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  font-size: 19.5px;
  line-height: 1.5;
}

a {
  color: var(--wu-link);
}

/* ---------- Header ---------- */

.site-header {
  background: var(--wu-dark);
}

.site-header .inside-header {
  padding: 0 10px;
  box-sizing: border-box;
  display: flex !important;
  align-items: center;
  justify-content: space-between !important;
  min-height: 60px;
}

/* clearfix pseudo-elements would become flex items and push the logo */
.site-header .inside-header::before,
.site-header .inside-header::after {
  content: none;
}

.site-description {
  display: none;
}

.main-title {
  font-size: 27px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0;
}

.main-title a {
  color: #fff;
  display: inline-block;
  padding: 12px 0;
}

.main-title a::first-letter {
  background: var(--wu-blue);
  padding: 1px 4px 3px 6px;
  margin-right: 1px;
  border-radius: 2px;
}

.site-header .main-navigation {
  background: transparent;
  float: none;
}

.main-navigation .main-nav ul li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 60px;
  padding: 0 20px;
}

.main-navigation .main-nav ul li:hover > a,
.main-navigation .main-nav ul li.current-menu-item > a {
  color: #d3dae1;
}

.main-navigation ul li.search-item a {
  color: #fff;
}

.navigation-search input[type="search"] {
  background: #fff;
  color: var(--wu-text);
  height: 60px;
}

/* ---------- Content / blog list ---------- */

.site-content {
  padding-top: 25px;
}

.separate-containers .inside-article,
.one-container .inside-article {
  padding: 0;
}

/* article grid: two cards per row */
.blog .site-main,
.archive .site-main,
.search .site-main {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 44px;
}

.blog .site-main article,
.archive .site-main article,
.search .site-main article {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  min-width: 0;
}

/* flex/grid children may not force the card wider than its column */
.blog .inside-article .entry-header,
.archive .inside-article .entry-header,
.search .inside-article .entry-header,
.blog .inside-article .entry-summary,
.archive .inside-article .entry-summary,
.search .inside-article .entry-summary {
  min-width: 0;
}

.blog .site-main > nav,
.archive .site-main > nav,
.search .site-main > nav,
.site-main > .paging-navigation,
.site-main > .page-header,
.site-main > .archive-header {
  grid-column: 1 / -1;
}

/* category / archive title above the grid */
.archive .page-header,
.search .page-header {
  margin-bottom: 4px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wu-border);
}

.archive .page-header h1,
.search .page-header h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}

.archive .page-header .archive-description {
  font-size: 16.5px;
  color: #4c5357;
  margin-top: 8px;
}

.entry-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--wu-text);
  margin-bottom: 10px;
}

.entry-title a {
  color: var(--wu-text);
}

.entry-title a:hover {
  color: var(--wu-link);
}

.wu-meta {
  font-size: 16.6px;
  color: var(--wu-text);
  margin: 0 0 20px;
}

.wu-meta a {
  color: var(--wu-text);
  text-decoration: underline;
}

.wu-meta a:hover {
  color: var(--wu-link);
}

/* short month variant only shows on mobile */
.wu-date-short {
  display: none;
}

/* hide GP default meta, we print our own */
.entry-header .entry-meta,
footer.entry-meta {
  display: none;
}

/* card internals: image on top, then title, meta, excerpt, read more */
.blog .inside-article,
.archive .inside-article,
.search .inside-article {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #dfe3e8;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog .inside-article:hover,
.archive .inside-article:hover,
.search .inside-article:hover {
  border-color: #c3cad2;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.blog .inside-article .post-image,
.archive .inside-article .post-image,
.search .inside-article .post-image {
  order: -1;
  margin: 0 0 20px;
  border-bottom: 1px solid #eceff2;
}

.blog .inside-article .entry-header,
.archive .inside-article .entry-header,
.search .inside-article .entry-header {
  padding: 0 24px;
}

.post-image img {
  display: block;
  width: 100%;
  height: auto;
}

.blog .entry-title,
.archive .entry-title,
.search .entry-title {
  font-size: 23px;
  line-height: 1.3;
  margin-bottom: 6px;
}

.blog .wu-meta,
.archive .wu-meta,
.search .wu-meta {
  font-size: 14.5px;
  margin-bottom: 12px;
}

.blog .inside-article .entry-summary,
.archive .inside-article .entry-summary,
.search .inside-article .entry-summary {
  display: flex;
  flex-direction: column;
  flex: 1;
  margin-top: 0;
  padding: 0 24px 22px;
}

.blog .entry-summary p,
.archive .entry-summary p,
.search .entry-summary p {
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--wu-text);
  margin-bottom: 0;
}

.wu-readmore {
  margin-top: auto;
  text-align: right;
  padding-top: 14px;
}

.wu-readmore a {
  color: var(--wu-link);
  text-decoration: underline;
  font-size: 16.5px;
  font-weight: 400;
}

/* pagination: only show "Next" like the original */
.paging-navigation .page-numbers:not(.next):not(.prev) {
  display: none;
}

.paging-navigation .page-numbers.next,
.paging-navigation .page-numbers.prev {
  background: transparent;
  color: var(--wu-link);
  text-decoration: underline;
  font-size: 19.5px;
  padding-left: 0;
}

/* ---------- Single post & pages: narrow, no sidebar (like the original) ---------- */

.single .content-area,
.page .content-area {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  float: none;
}

.single .inside-article > .post-image,
.single .featured-image {
  display: none;
}

.single .entry-title,
.page .entry-title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1.2;
}

.single .entry-content,
.page .entry-content {
  font-size: 19.5px;
  line-height: 1.5;
}

.entry-content p {
  margin-bottom: 1.5em;
}

.single .entry-content h2,
.page .entry-content h2 {
  font-size: 30px;
  font-weight: 600;
  color: var(--wu-text);
  margin-top: 1.2em;
  margin-bottom: 20px;
}

.single .entry-content h3,
.page .entry-content h3 {
  font-size: 27px;
  font-weight: 600;
  color: var(--wu-text);
}

.single .entry-content a,
.page .entry-content a {
  color: var(--wu-link);
  text-decoration: underline;
}

.entry-content pre {
  background: rgba(0, 0, 0, 0.05);
  color: var(--wu-text);
  padding: 20px;
  border-radius: 0;
  overflow-x: auto;
  font-size: 15px;
}

.entry-content code {
  background: rgba(0, 0, 0, 0.05);
  color: var(--wu-text);
  font-size: 15px;
}

.entry-content pre code {
  background: transparent;
  padding: 0;
}

/* ---------- Sidebar cards ---------- */

.sidebar .widget {
  margin-bottom: 25px;
  padding: 0;
}

.wu-card--perfmatters {
  background: var(--wu-dark);
  color: #fff;
  padding: 20px;
}

.wu-card--perfmatters .wu-logo {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.wu-logo-mark {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 3px solid #4a89dd;
  border-radius: 50% 50% 50% 4px;
  position: relative;
}

.wu-logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  border: 3px solid #4a89dd;
}

.wu-card--perfmatters h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wu-card--perfmatters p {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.wu-btn {
  display: inline-block;
  padding: 8.5px 17px;
  font-size: 17px;
  font-weight: 400;
  border-radius: 0;
  text-decoration: none;
}

.wu-btn--blue {
  background: #4a89dd;
  color: #fff;
}

.wu-btn--blue:hover {
  background: #3a79cd;
  color: #fff;
}

.wu-card--kinsta {
  background: #5942f1;
  color: #fff;
  padding: 20px;
}

.wu-card--kinsta .wu-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.wu-card--kinsta h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.wu-card--kinsta p {
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
  margin-bottom: 16px;
}

.wu-btn--cyan {
  background: #52d5da;
  color: #150773;
}

.wu-btn--cyan:hover {
  background: #42c5ca;
  color: #150773;
}

.wu-card--kinsta .wu-note {
  font-size: 15px;
  color: #d9d3fb;
  margin: 14px 0 0;
}

.wu-card--kinsta .wu-note a {
  color: #fff;
  text-decoration: underline;
}

.wu-card--box {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.09), 0 4px 16px rgba(0, 0, 0, 0.05);
  padding: 20px 25px 25px;
}

.wu-card--box h3 {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: normal;
  margin-bottom: 20px;
  color: var(--wu-text);
}

.wu-social {
  display: flex;
  gap: 12px;
}

.wu-social a {
  width: 50px;
  height: 50px;
  background: var(--wu-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.wu-social a:hover {
  background: var(--wu-link);
  color: #fff;
}

.wu-social svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.wu-featured {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wu-featured li {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.5;
}

.wu-featured li:last-child {
  margin-bottom: 0;
}

.wu-featured a {
  color: var(--wu-text);
  text-decoration: none;
}

.wu-featured a:hover {
  color: var(--wu-link);
  text-decoration: underline;
}

/* ---------- Footer ---------- */

.site-footer,
.site-footer .site-info,
.site-info {
  background: #fff !important;
  color: #4c5357;
}

.site-footer {
  border-top: 1px solid var(--wu-border);
  margin-top: 30px;
}

.site-info {
  padding: 25px 40px;
}

.site-info .copyright-bar {
  width: 100%;
}

.wu-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 15px;
  color: #4c5357;
}

.wu-footer a {
  color: #4c5357;
  text-decoration: underline;
}

.wu-footer a:hover {
  color: var(--wu-link);
}

.wu-footer-links {
  display: flex;
  gap: 26px;
}

/* ---------- About page ---------- */

.wu-highlight {
  background: #fdf3cf;
  padding: 2px 6px;
  font-weight: 700;
}

.wu-bio {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.wu-bio-text {
  flex: 1;
}

.wu-avatar {
  flex: 0 0 92px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #f2d3b3, #c98850);
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wu-avatar--lg {
  flex: 0 0 220px;
  width: 220px;
  height: 220px;
  font-size: 64px;
}

.wu-photo {
  flex: 0 0 240px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid #eef2f7;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.wu-portrait {
  float: right;
  width: 280px;
  margin: 6px 0 18px 32px;
}

.wu-portrait img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.wu-portrait figcaption {
  font-size: 13.5px;
  color: #4c5357;
  line-height: 1.45;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .wu-portrait {
    float: none;
    width: 100%;
    max-width: 320px;
    margin: 20px auto 24px;
  }
}

.wu-social-links {
  display: flex;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.wu-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1px solid #c9ced4;
  border-radius: 6px;
  color: var(--wu-text);
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 600;
}

.wu-social-links a:hover {
  border-color: var(--wu-link);
  color: var(--wu-link);
}

.wu-social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

blockquote {
  border-left: 4px solid #d7dbe0;
  padding-left: 24px;
  font-style: italic;
  color: #333;
}

/* ---------- Plain content tables (policy pages) ---------- */

.entry-content table {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  margin: 24px 0;
}

.entry-content th {
  text-align: left;
  border-bottom: 2px solid var(--wu-text);
  padding: 8px 10px;
  font-weight: 700;
}

.entry-content td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--wu-border);
  vertical-align: top;
}

@media (max-width: 768px) {
  .entry-content table {
    display: block;
    overflow-x: auto;
  }
}

/* ---------- Forms & notices ---------- */

.wu-form {
  max-width: 560px;
  margin: 28px 0 36px;
}

.wu-form label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.wu-form input[type="text"],
.wu-form input[type="email"],
.wu-form select,
.wu-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9ced4;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  color: var(--wu-text);
  background: #fff;
  margin-bottom: 18px;
}

.wu-form textarea {
  min-height: 170px;
  resize: vertical;
}

.wu-form input:focus,
.wu-form select:focus,
.wu-form textarea:focus {
  outline: 2px solid var(--wu-link);
  outline-offset: 1px;
  border-color: var(--wu-link);
}

.wu-form .wu-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.wu-form .wu-check input {
  margin-top: 5px;
  width: auto;
}

.wu-form .wu-check label {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

.wu-form button {
  background: var(--wu-link);
  color: #fff;
  border: 0;
  padding: 13px 28px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}

.wu-form button:hover {
  background: #1b64c0;
}

.wu-hp {
  position: absolute;
  left: -9999px;
}

.wu-notice {
  background: #e8f4ec;
  border: 1px solid #9fd0ae;
  color: #1d5a2f;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 26px;
  font-size: 16px;
}

.wu-notice--error {
  background: #fbeaea;
  border-color: #dfa3a3;
  color: #7a2727;
}

/* ---------- Comment form, matched to the site forms ---------- */

.comment-respond {
  max-width: 560px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--wu-border);
}

.comment-reply-title {
  font-size: 26px;
  font-weight: 600;
  color: var(--wu-text);
  margin-bottom: 8px;
}

.comment-form .comment-notes,
.comment-form .logged-in-as {
  font-size: 15px;
  color: #4c5357;
  margin-bottom: 20px;
}

.comment-form p {
  margin-bottom: 0;
}

.comment-form label {
  display: block;
  font-weight: 600;
  font-size: 16px;
  color: var(--wu-text);
  margin-bottom: 6px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #c9ced4;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  color: var(--wu-text);
  background: #fff;
  margin-bottom: 18px;
}

.comment-form textarea {
  min-height: 170px;
  resize: vertical;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
  outline: 2px solid var(--wu-link);
  outline-offset: 1px;
  border-color: var(--wu-link);
}

.comment-form .comment-form-cookies-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.comment-form .comment-form-cookies-consent input {
  width: auto;
  margin-top: 5px;
}

.comment-form .comment-form-cookies-consent label {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}

.comment-form input[type="submit"],
.comment-form #submit {
  background: var(--wu-link);
  color: #fff;
  border: 0;
  padding: 13px 28px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.comment-form input[type="submit"]:hover,
.comment-form #submit:hover {
  background: #1b64c0;
}

/* ---------- Mobile ---------- */

@media (max-width: 768px) {
  /* header: one compact 45px bar — logo left, search + hamburger right */
  .site-header .inside-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 10px;
    height: 45px;
    min-height: 45px;
    position: relative;
  }

  .site-branding {
    padding: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
  }

  .main-title {
    font-size: 24px;
    line-height: 45px;
  }

  .main-title a {
    padding: 0;
    line-height: 45px;
    display: inline-block;
  }

  .main-title a::first-letter {
    padding: 2px 4px 3px 6px;
  }

  .site-header .main-navigation {
    width: auto;
    display: flex;
    align-items: center;
    position: static;
  }

  .main-navigation .inside-navigation {
    display: flex;
    align-items: center;
    position: static;
  }

  .main-navigation .menu-toggle {
    color: #fff;
    background: transparent;
    line-height: 45px;
    height: 45px;
    padding: 0 20px;
    font-size: 16px;
  }

  .main-navigation .menu-toggle svg,
  .main-navigation .mobile-bar-items svg {
    width: 20px;
    height: 20px;
  }

  /* icon-only hamburger, like the original */
  .main-navigation .menu-toggle .mobile-menu {
    display: none;
  }

  .main-navigation .mobile-bar-items {
    display: flex;
    align-items: center;
    position: static !important;
  }

  .main-navigation .mobile-bar-items a {
    color: #fff;
    line-height: 45px;
    height: 45px;
    padding: 0 20px;
    display: inline-block;
  }

  /* dropdown panel below the bar, full width — only when opened */
  .site-header .main-navigation .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--wu-dark);
    z-index: 999;
  }

  .site-header .main-navigation.toggled .main-nav {
    display: block;
  }

  .main-navigation .main-nav ul li a {
    line-height: 45px;
    padding: 0 20px;
    font-size: 20px;
    font-weight: 400;
  }

  .main-navigation .main-nav ul li {
    border: 0;
  }

  .site-header .main-navigation .main-nav {
    padding: 8px 0 14px;
  }

  .navigation-search input[type="search"] {
    height: 45px;
    font-size: 16px;
  }

  /* content: 25px gutters on articles, full-bleed sidebar cards */
  .site-content {
    padding: 25px 0 0;
  }

  /* grid collapses to one card per row */
  .blog .site-main,
  .archive .site-main,
  .search .site-main {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding: 0 20px;
  }

  .blog .inside-article .entry-header,
  .archive .inside-article .entry-header,
  .search .inside-article .entry-header,
  .blog .inside-article .entry-summary,
  .archive .inside-article .entry-summary,
  .search .inside-article .entry-summary {
    padding-left: 18px;
    padding-right: 18px;
  }

  .single .inside-article,
  .page .inside-article {
    padding: 0 25px;
  }

  .entry-title {
    font-size: 22px;
    line-height: 1.25;
  }

  .wu-meta {
    font-size: 13.5px;
    letter-spacing: -0.1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 12px;
  }

  /* cards have inner padding, so the byline sits one notch below the article size */
  .blog .wu-meta,
  .archive .wu-meta,
  .search .wu-meta {
    font-size: 12.5px;
  }

  .wu-date-full {
    display: none;
  }

  .wu-date-short {
    display: inline;
  }

  .blog .inside-article .post-image,
  .archive .inside-article .post-image {
    margin: 0 0 14px;
    max-width: none;
  }

  .blog .entry-summary p,
  .archive .entry-summary p,
  .search .entry-summary p {
    font-size: 16.5px;
    line-height: 1.55;
  }

  .wu-readmore {
    padding-top: 12px;
  }

  .paging-navigation {
    padding: 0 25px;
  }

  /* single posts & pages */
  .single .entry-title,
  .page .entry-title {
    font-size: 28px;
  }

  .single .entry-content h2,
  .page .entry-content h2 {
    font-size: 24px;
  }

  .single .entry-content h3,
  .page .entry-content h3 {
    font-size: 21px;
  }

  .entry-content pre {
    font-size: 13px;
    padding: 14px;
  }

  /* sidebar cards: edge-to-edge with inner padding */
  .sidebar .widget {
    margin-bottom: 25px;
  }

  .wu-card--perfmatters,
  .wu-card--kinsta {
    padding: 20px 25px;
  }

  .wu-card--box {
    padding: 20px 25px 25px;
    box-shadow: none;
    border-top: 1px solid var(--wu-border);
  }

  .wu-card--box h3 {
    font-size: 26px;
  }

  .wu-social a {
    width: 45px;
    height: 45px;
  }

  /* footer */
  .site-info {
    padding: 20px 25px;
  }

  .wu-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
  }

  .wu-footer-links {
    gap: 18px;
    flex-wrap: wrap;
  }

  /* about page */
  .wu-bio {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }

  .wu-avatar--lg {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
    font-size: 44px;
  }

  .wu-photo {
    flex: 0 0 auto;
    width: 170px;
    height: 170px;
  }

  .wu-bio-text {
    width: 100%;
  }

  blockquote {
    margin-left: 0;
    padding-left: 16px;
  }
}
