/* =====================================================
   base.css — WebGeeks IT
   All shared layout & component styles live here.
   Theme files only define :root variables + .background.
   ===================================================== */

* { box-sizing: border-box }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-size: 14px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
}

/* ---- Background shell ---- */
.background {
  position: fixed;
  inset: 0;
  background: var(--gradient);
  background-size: 350% 350%;
  z-index: -3;
}

@keyframes gradientShift {
  0%   { background-position: 0%   50% }
  50%  { background-position: 100% 50% }
  100% { background-position: 0%   50% }
}

@keyframes titleFlow {
  0%   { background-position: 0%   50% }
  50%  { background-position: 100% 50% }
  100% { background-position: 0%   50% }
}

/* ---- Glass container ---- */
.glass-container {
  width: 94%;
  max-width: 1250px;
  margin: 24px auto;
  padding: 20px 24px 28px;
  border-radius: 18px;
  backdrop-filter: blur(28px) saturate(170%);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 16px 50px rgba(0,0,0,0.28);
}

/* ---- Header ---- */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.header-left  { display: flex; flex-direction: column; }
.header-right { display: flex; gap: 12px; align-items: center; margin-left: auto; }

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 100%;
  max-width: 72px;
  height: auto;
}

.brand-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--title-grad);
  background-size: 200% 200%;
  animation: titleFlow 20s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: -2px;
}

.subtitle {
  margin: 4px 0 0 10px;
  font-size: 0.88rem;
  letter-spacing: 0.01em;
}

/* ---- Social icon links ---- */
.icon-link {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  color: var(--icon-color, rgba(255,255,255,0.85));
  text-decoration: none;
  font-size: 16px;
  transition: .25s ease;
  border: 1px solid rgba(255,255,255,0.18);
}

.icon-link svg { width: 18px; height: 18px; }

.icon-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.22);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}

/* ---- Portfolio button ---- */
.portfolio-btn {
  width: auto;
  padding: 0 12px;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  border-color: rgba(255,255,255,0.25);
}

.portfolio-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.portfolio-label   { line-height: 1; }

/* ---- Tab navigation ---- */
.tab-nav {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.tab-btn {
  padding: 7px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.10);
  color: var(--text);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-family: inherit;
  font-size: .84rem;
  font-weight: 600;
  transition: .2s ease;
}

.tab-btn:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-2px);
}

.tab-btn.active {
  background: rgba(255,255,255,0.24);
  border-color: rgba(255,255,255,0.40);
  color: var(--accent);
  box-shadow: 0 4px 14px rgba(0,0,0,0.20);
}

/* ---- Tab pages ---- */
.tab-page        { display: none; }
.tab-page.active { display: block; }


.section-heading {
  margin-top: 24px;
  margin-bottom: -4px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  opacity: .55;
}

/* ---- Projects grid ---- */
.projects {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  margin-top: 24px;
}

.highlight-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.project-card {
  background: rgba(255,255,255,0.12);
  padding: 12px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  transition: .2s ease;
}

.project-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.20);
}

.project-card.featured {
  border: 1px solid rgba(255,255,255,0.22);
}

/* ---- Image wrapper ---- */
.image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 10px;
  margin-bottom: 8px;
}

/* 30% height reduction: 9/16 * 0.7 ≈ 6.3/16, use clean ratio 8/3 ≈ 2.67 */
.image-wrapper.sm {
  aspect-ratio: 3 / 1;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-wrapper.icon-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.08);
}

.image-wrapper.icon-placeholder svg {
  width: 42px;
  height: 42px;
  opacity: .45;
}

.project-card h3 { margin: 4px 0; font-size: 1rem; }
.project-card p  { font-size: .86rem; line-height: 1.4; margin: 4px 0 6px; }

/* ---- Tech meta block (platform label row / stack chip row) ---- */
.tech-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 4px 0 10px;
}

.tech-row {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  min-width: 0;
}

/* "Platform" label — sits inline before the chip, no fixed width */
.tech-row-label {
  font-size: .60rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .40;
  flex-shrink: 0;
  white-space: nowrap;
  margin-right: 2px;
}

/* Hairline rule between platform and stack rows */
.tech-divider {
  height: 1px;
  background: rgba(255,255,255,0.14);
  margin: 1px 0;
}

/* ---- Coming Soon card ---- */
.project-card.coming-soon {
  opacity: 0.52;
  border: 1px dashed rgba(255,255,255,0.22);
  background: rgba(255,255,255,0.06);
}

.project-card.coming-soon:hover {
  opacity: 0.72;
  background: rgba(255,255,255,0.10);
}

.image-wrapper.coming-soon-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  aspect-ratio: 3 / 1;
}

.image-wrapper.coming-soon-img svg {
  width: 38px;
  height: 38px;
  opacity: .30;
}

/* Stack group separator */
.tech-sep {
  font-size: .72rem;
  opacity: 0.30;
  padding: 0 1px;
  align-self: center;
  user-select: none;
  flex-shrink: 0;
}

/* Individual chips */
.tech-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 3px 8px 3px 6px;
  border-radius: 6px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .02em;
  opacity: 0.65;
  white-space: nowrap;
  transition: opacity .15s ease;
}

.tech-chip:hover { opacity: 1; }

.tech-chip svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

/* ---- Card links ---- */
.card-links {
  display: flex;
  gap: 14px;
  margin-top: auto;
  flex-wrap: wrap;
}

.github-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: .88rem;
  transition: .2s ease;
}

.github-link:hover { transform: translateY(-2px); }

/* ---- License list ---- */
.license-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.license-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
  color: var(--text);
  transition: .2s ease;
}

.license-item:hover {
  background: rgba(255,255,255,0.20);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
}

.license-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  flex-shrink: 0;
}

.license-icon svg { width: 16px; height: 16px; }

.license-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.license-name { font-size: .90rem; font-weight: 600; }

.license-url {
  font-size: .74rem;
  opacity: .55;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.license-arrow {
  font-size: 1rem;
  opacity: .45;
  flex-shrink: 0;
  color: var(--accent);
}

/* ---- Theme switcher ---- */
.themes {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
}

.theme-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.theme-label {
  font-size: .68rem;
  opacity: .55;
  text-transform: uppercase;
  letter-spacing: .09em;
  font-weight: 700;
  white-space: nowrap;
}

/* vertical divider no longer used — kept for safety */
.theme-divider { display: none; }

.theme-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.themes button {
  padding: 5px 11px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: var(--text);
  backdrop-filter: blur(8px);
  cursor: pointer;
  font-family: inherit;
  font-size: .82rem;
  transition: .2s ease;
}

.themes button:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ---- Footer ---- */
footer {
  margin-top: 28px;
  font-size: .76rem;
  opacity: .8;
  text-align: center;
}

.footer-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(128,128,128,0.35);
  text-underline-offset: 2px;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity .15s ease;
}

.footer-link:hover { opacity: 1; }

/* Hide platform row label at very narrow widths — chips are self-descriptive */
@media (max-width: 420px) {
  .tech-row-label { display: none; }
}

/* ===== Responsive ===== */

/* --- 768px: start compressing the icon row gap --- */
@media (max-width: 768px) {
  .header-right     { gap: 8px; }
}

/* --- 600px: collapse portfolio to icon-only, shrink icons --- */
@media (max-width: 600px) {
  .glass-container  { width: 92%; padding: 16px 14px 22px; }
  .projects         { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .project-card     { padding: 8px; border-radius: 12px; }
  .image-wrapper    { height: 110px; aspect-ratio: unset; margin-bottom: 6px; }
  .image-wrapper.sm { height: 77px; }
  .brand-title      { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .icon-link        { width: 32px; height: 32px; font-size: 13px; }
  .icon-link svg    { width: 15px; height: 15px; }
  .portfolio-label  { display: none; }
  .portfolio-btn    { width: 32px; padding: 0; }
  .header-right     { gap: 7px; flex-wrap: nowrap; } /* stays right-aligned */
  .subtitle         { font-size: .88rem; }
  .themes           { gap: 8px; margin-top: 22px; }
  .theme-group      { gap: 5px; }
  .tab-nav          { gap: 6px; flex-wrap: wrap; margin-top: 10px; padding-bottom: 10px; }
  .tab-btn          { padding: 5px 12px; font-size: .78rem; }
  .tech-chip        { font-size: .64rem; padding: 2px 6px 2px 5px; }
  .tech-row-label   { font-size: .56rem; }
}

/* --- 560px: stack header, centre brand + icons + tabs --- */
@media (max-width: 560px) {
  .glass-container  { padding-top: 18px; }
  .site-header      { flex-direction: column; align-items: flex-start; gap: 6px; }
  /* Brand block centres */
  .header-left      { width: 100%; align-items: center; }
  .brand-row        { justify-content: center; }
  .brand-title      { text-align: center; }
  .subtitle         { text-align: center; margin-left: 0; }
  /* Icons centred to match centred brand */
  .header-right     { width: 100%; justify-content: center; margin-left: 0; gap: 6px; flex-wrap: nowrap; }
  .icon-link        { width: 28px; height: 28px; font-size: 12px; border-radius: 8px; }
  .icon-link svg    { width: 13px; height: 13px; }
  .portfolio-btn    { width: 28px; }
  /* Tab nav centres at mobile */
  .tab-nav          { justify-content: center; }
  .projects         { margin-top: 14px; }
  .theme-divider    { display: none; }
  .themes           { gap: 6px; }
  .license-url      { display: none; }
}

/* --- 380px: squeeze tabs to wrap neatly --- */
@media (max-width: 380px) {
  .tab-btn          { padding: 4px 10px; font-size: .74rem; }
  .glass-container  { padding: 14px 10px 18px; }
}


/* =====================================================
   Home / Featured professional compact layout
   Employer-facing Home tab only. Tools, Games, and Licenses
   continue to use the standard grid styles above.
   ===================================================== */

#page-home .pro-home-layout {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

#page-home .home-showcase-panel,
#page-home .professional-featured-card {
  border: 1px solid rgba(255,255,255,0.20);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.08));
  border-radius: 16px;
  backdrop-filter: blur(14px) saturate(145%);
  box-shadow: 0 10px 26px rgba(0,0,0,0.16);
}

#page-home .home-showcase-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 32%);
  gap: 22px;
  align-items: center;
  padding: 12px 20px 16px;
}

#page-home .about-kicker {
  display: inline-flex;
  margin-bottom: 4px;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .60;
}

#page-home .showcase-copy h2 {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

#page-home .showcase-copy p {
  margin: 8px 0 0;
  max-width: 820px;
  font-size: .90rem;
  line-height: 1.48;
  opacity: .88;
}

#page-home .showcase-copy .showcase-support {
  opacity: .74;
}

#page-home .showcase-focus {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

#page-home .showcase-focus span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.11);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
  opacity: .82;
}

#page-home .featured-section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 2px 0 -2px;
}

#page-home .featured-section-title .section-heading {
  margin: 0;
}

#page-home .featured-section-title span {
  font-size: .72rem;
  font-weight: 600;
  opacity: .55;
}

#page-home .professional-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 10px;
}

#page-home .professional-featured-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(170px, 34%, 245px);
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 0;
  padding: 14px;
  overflow: hidden;
}

#page-home .professional-featured-card:hover {
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.10));
}

#page-home .professional-featured-card .featured-card-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

#page-home .professional-featured-card h3 {
  margin: 0 0 6px;
  font-size: 1.04rem;
  line-height: 1.2;
}

#page-home .professional-featured-card p {
  margin: 0 0 10px;
  font-size: .84rem;
  line-height: 1.4;
  opacity: .88;
}

#page-home .professional-featured-card .tech-meta {
  gap: 6px;
  margin: 2px 0 10px;
}

#page-home .professional-featured-card .tech-row {
  gap: 5px;
}

#page-home .professional-featured-card .tech-chip {
  opacity: .76;
}

#page-home .professional-featured-card .card-links {
  margin-top: 2px;
}

#page-home .professional-featured-card .image-wrapper,
#page-home .professional-featured-card .image-wrapper.sm {
  width: 100%;
  height: 132px;
  margin: 0;
  aspect-ratio: unset;
  border-radius: 12px;
  overflow: hidden;
  background: transparent;
  border: 0;
}

#page-home .professional-featured-card .image-wrapper img,
#page-home .professional-featured-card .image-wrapper.sm img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 980px) {
  #page-home .home-showcase-panel {
    grid-template-columns: 1fr;
  }

  #page-home .showcase-focus {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  #page-home .professional-featured-grid {
    grid-template-columns: 1fr;
  }

  #page-home .professional-featured-card {
    grid-template-columns: minmax(0, 1fr) clamp(190px, 30%, 280px);
  }
}

@media (max-width: 600px) {
  #page-home .pro-home-layout {
    gap: 12px;
    margin-top: 14px;
  }

  #page-home .home-showcase-panel,
  #page-home .professional-featured-card {
    padding: 12px;
    border-radius: 14px;
  }

  #page-home .showcase-focus {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #page-home .featured-section-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  #page-home .professional-featured-card {
    grid-template-columns: 1fr;
  }

  #page-home .professional-featured-card .image-wrapper,
  #page-home .professional-featured-card .image-wrapper.sm {
    order: -1;
    width: min(100%, 300px);
    height: 120px;
    margin: 0 auto 4px;
  }

  #page-home .professional-featured-card p {
    font-size: .82rem;
  }
}

/* =====================================================
   Featured/Home image polish
   Adds a consistent framed preview treatment to the Home
   showcase images while preserving animated GIF playback.
   ===================================================== */

#page-home .professional-featured-card .image-wrapper,
#page-home .professional-featured-card .image-wrapper.sm {
  width: 100%;
  height: 142px;
  margin: 0;
  padding: 7px;
  aspect-ratio: unset;
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.07));
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -18px 40px rgba(0,0,0,0.06),
    0 10px 24px rgba(0,0,0,0.08);
}

#page-home .professional-featured-card .image-wrapper img,
#page-home .professional-featured-card .image-wrapper.sm img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: rgba(0,0,0,0.12);
  box-shadow: 0 6px 18px rgba(0,0,0,0.16);
}

/* Keep the animated BoneCrawler GIF crisp without disabling animation. */
#page-home .professional-featured-card .image-wrapper img[src*="bonecrawler"],
#page-home .professional-featured-card .image-wrapper img[src*="BoneCrawler"] {
  image-rendering: pixelated;
}

@media (max-width: 600px) {
  #page-home .professional-featured-card .image-wrapper,
  #page-home .professional-featured-card .image-wrapper.sm {
    width: min(100%, 320px);
    height: 132px;
    margin: 0 auto 6px;
    padding: 6px;
  }
}

/* Featured showcase minor copy/layout cleanup */
#page-home .home-showcase-panel { padding-top: 12px; }
#page-home .home-showcase-panel .about-kicker { margin-bottom: 4px; }
#page-home .featured-section-title span { display: none; }

/* =====================================================
   Home featured preview crop
   Matches Tools/Games image behavior on the Home page.
   Keeps the existing frame/container size unchanged.
   ===================================================== */

#page-home .professional-featured-card .image-wrapper img,
#page-home .professional-featured-card .image-wrapper.sm img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}

/* =====================================================
   Tools/Games preview crop
   Applies the same fixed-container crop behavior used on
   the Home featured previews.
   ===================================================== */

#page-tools .image-wrapper img,
#page-tools .image-wrapper.sm img,
#page-games .image-wrapper img,
#page-games .image-wrapper.sm img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
  transform: none;
}



/* =====================================================
   Tools card alignment
   Matches the Games page card structure so tool cards keep
   platform/stack rows grouped near the bottom links.
   ===================================================== */

#page-tools .project-card {
  min-height: 406px;
}

#page-tools .image-wrapper {
  height: 148px;
  aspect-ratio: unset;
  margin-bottom: 12px;
}

#page-tools .project-card h3 {
  min-height: 2.35em;
  display: flex;
  align-items: flex-start;
  margin: 4px 0 6px;
  line-height: 1.18;
}

#page-tools .project-card p {
  min-height: 5.2em;
  margin: 0 0 8px;
}

#page-tools .project-card .tech-meta {
  min-height: 82px;
  margin: auto 0 10px;
}

#page-tools .project-card .card-links {
  min-height: 24px;
  margin-top: 0;
  align-items: flex-end;
}

@media (max-width: 600px) {
  #page-tools .project-card {
    min-height: 0;
  }

  #page-tools .image-wrapper {
    height: 110px;
    margin-bottom: 8px;
  }

  #page-tools .project-card h3,
  #page-tools .project-card p,
  #page-tools .project-card .tech-meta,
  #page-tools .project-card .card-links {
    min-height: 0;
  }
}

/* =====================================================
   Games card alignment
   Keeps each game card visually consistent when titles,
   descriptions, chip rows, and link counts vary.
   ===================================================== */

#page-games .project-card {
  min-height: 342px;
}

#page-games .image-wrapper.sm {
  height: 70px;
  aspect-ratio: unset;
  margin-bottom: 10px;
}

#page-games .project-card h3 {
  min-height: 2.35em;
  display: flex;
  align-items: flex-start;
  margin: 4px 0 6px;
  line-height: 1.18;
}

#page-games .project-card p {
  min-height: 5.45em;
  margin: 0 0 8px;
}

#page-games .project-card .tech-meta {
  min-height: 82px;
  margin: auto 0 10px;
}

#page-games .project-card .card-links {
  min-height: 24px;
  margin-top: 0;
  align-items: flex-end;
}

#page-games .project-card.coming-soon .image-wrapper.sm img {
  opacity: .82;
}

@media (max-width: 600px) {
  #page-games .project-card {
    min-height: 0;
  }

  #page-games .image-wrapper.sm {
    height: 110px;
    margin-bottom: 8px;
  }

  #page-games .project-card h3,
  #page-games .project-card p,
  #page-games .project-card .tech-meta,
  #page-games .project-card .card-links {
    min-height: 0;
  }
}
