:root{
  --bg:#05070b;
  --bg2:#0a0f18;
  --panel:rgba(12,16,24,0.72);
  --panel-strong:rgba(15,20,30,0.9);
  --line:rgba(255,255,255,0.08);
  --line-soft:rgba(255,255,255,0.05);
  --text:#f5f5f2;
  --muted:#a7acb6;
  --muted-2:#8b91a0;
  --accent:#e2d3b2;
  --accent-2:#c0a878;
  --accent-dark:#a38858;
  --shadow:0 20px 60px rgba(0,0,0,.45);
  --radius-xl:30px;
  --radius-lg:22px;
  --radius-md:18px;
  --radius-sm:14px;
  --maxw:1360px;
}

*{box-sizing:border-box;}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Inter', sans-serif;
  background:
    radial-gradient(circle at 15% 20%, rgba(80,90,140,.16), transparent 35%),
    radial-gradient(circle at 78% 12%, rgba(165,130,90,.14), transparent 28%),
    radial-gradient(circle at 70% 60%, rgba(80,95,150,.10), transparent 30%),
    linear-gradient(180deg, #080b11 0%, #04060a 100%);
  color:var(--text);
  min-height:100vh;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size:100% 76px, 76px 100%;
  mask-image:linear-gradient(to bottom, rgba(255,255,255,.25), transparent 70%);
  opacity:.23;
}

body.lightbox-open{
  overflow:hidden;
}

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

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

button,
select{
  font-family:inherit;
}

.site-shell{
  width:min(calc(var(--maxw) + 40px), calc(100% - 20px));
  margin:14px auto 40px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:34px;
  background:linear-gradient(180deg, rgba(7,10,15,.92), rgba(5,7,11,.97));
  box-shadow:0 30px 100px rgba(0,0,0,.48);
  overflow:hidden;
  backdrop-filter:blur(18px);
}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:blur(14px);
  background:linear-gradient(180deg, rgba(5,7,11,.88), rgba(5,7,11,.65));
  border-bottom:1px solid rgba(255,255,255,.05);
}

.topbar-inner{
  width:min(var(--maxw), calc(100% - 36px));
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
}

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

.brand-mark{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.1);
  background:radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), rgba(255,255,255,.02));
  color:var(--accent);
  font-size:22px;
  font-weight:600;
  font-family:Georgia, "Times New Roman", serif;
  flex:0 0 auto;
}

.Logo{
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  color:var(--accent);
  flex:0 0 auto;
  background-image: url(images/logo_2.png);
}


.brand-text{
  line-height:1.1;
}

.brand-text strong{
  display:block;
  font-size:1.05rem;
  letter-spacing:.12em;
  font-weight:700;
}

.brand-text span{
  display:block;
  color:var(--muted);
  font-size:.76rem;
  letter-spacing:.22em;
  text-transform:uppercase;
  margin-top:4px;
}

.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  color:#e9ecf3;
  font-size:.95rem;
  padding:10px 14px;
  border-radius:999px;
  transition:.2s ease;
}

.nav a:hover{
  background:rgba(255,255,255,.06);
}

.contact-btn{
  padding:12px 18px !important;
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.07));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.07);
}

.mobile-menu-button{
  display:none;
  width:46px;
  height:42px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  background:rgba(255,255,255,.04);
  cursor:pointer;
  padding:0;
}

.mobile-menu-button span{
  display:block;
  width:20px;
  height:2px;
  background:#f4f4f4;
  margin:5px auto;
  border-radius:99px;
}

.hero{
  position:relative;
  width:min(var(--maxw), calc(100% - 36px));
  margin:0 auto;
  display:grid;
  grid-template-columns:1.02fr 1.1fr;
  gap:26px;
  align-items:center;
  min-height:520px;
  padding:42px 0 34px;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 66% 42%, rgba(124,140,196,.26) 0%, rgba(124,140,196,.14) 22%, rgba(8,10,16,0) 54%),
    radial-gradient(circle at 58% 45%, rgba(214,181,136,.12) 0%, rgba(214,181,136,.06) 20%, rgba(8,10,16,0) 46%),
    linear-gradient(90deg, rgba(5,7,11,0) 0%, rgba(5,7,11,.10) 42%, rgba(5,7,11,.32) 100%);
  pointer-events:none;
  z-index:0;
}

.hero-copy{
  position:relative;
  z-index:2;
  padding:20px 2px 10px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--accent);
  font-size:.84rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  margin-bottom:18px;
  opacity:.9;
}

.eyebrow::before{
  content:"✦";
  font-size:.9rem;
}

.hero h1{
  margin:0 0 18px;
  font-size:clamp(2.8rem, 6vw, 5.3rem);
  line-height:.92;
  letter-spacing:-.05em;
  font-weight:800;
}

.hero p{
  margin:0;
  max-width:620px;
  color:var(--muted);
  font-size:1.08rem;
  line-height:1.75;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:15px 22px;
  border-radius:999px;
  font-weight:600;
  font-size:.98rem;
  transition:.22s ease;
  border:1px solid transparent;
}

.btn-primary{
  background:linear-gradient(180deg, #ecdfc8, #d7c29d);
  color:#171819;
  box-shadow:0 12px 34px rgba(187, 158, 110, .18);
}

.btn-primary:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 42px rgba(187, 158, 110, .22);
}

.btn-secondary{
  color:#f2f3f5;
  border-color:rgba(255,255,255,.09);
  background:rgba(255,255,255,.03);
}

.btn-secondary:hover{
  background:rgba(255,255,255,.06);
}

.hero-stage{
  position:relative;
  min-height:460px;
  overflow:visible;
  background:transparent;
  border:0;
  box-shadow:none;
  z-index:1;
}

.hero-stage iframe,
.hero-static-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  filter:saturate(.95) contrast(1.03);
}

.hero-static-image{
  inset:auto 0 6px auto;
  width:112%;
  height:100%;
  object-fit:contain;
  object-position:right center;
  opacity:.98;
  mask-image:linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,.75) 82%, rgba(0,0,0,0) 100%);
  -webkit-mask-image:linear-gradient(to left, rgba(0,0,0,1) 70%, rgba(0,0,0,.75) 82%, rgba(0,0,0,0) 100%);
}

.section{
  width:min(var(--maxw), calc(100% - 36px));
  margin:0 auto;
  padding:10px 0 30px;
}

.section-topbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  padding:14px 0 18px;
  border-top:1px solid rgba(255,255,255,.05);
}

.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  padding:6px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.tab-btn{
  background:transparent;
  color:#e8ebf1;
  border:0;
  border-radius:999px;
  padding:12px 18px;
  cursor:pointer;
  transition:.2s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.tab-btn:hover{
  background:rgba(255,255,255,.05);
}

.tab-btn.active{
  background:linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.05));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.06);
}

.tab-btn.active::after{
  content:"•";
  color:var(--accent);
  font-size:1rem;
  margin-left:2px;
}

.section-controls{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.sort-select{
  appearance:none;
  border:1px solid rgba(255,255,255,.07);
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  color:#f4f5f8;
  border-radius:14px;
  padding:12px 42px 12px 16px;
  outline:none;
  cursor:pointer;
}

.view-toggle{
  display:flex;
  gap:8px;
  padding:6px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
}

.icon-btn{
  width:44px;
  height:42px;
  border:0;
  border-radius:10px;
  background:transparent;
  color:#dce0e8;
  cursor:pointer;
  transition:.2s ease;
  display:grid;
  place-items:center;
}

.icon-btn:hover{
  background:rgba(255,255,255,.05);
}

.icon-btn.active{
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}

.works-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:18px;
}

.works-grid.list-view{
  grid-template-columns:1fr;
}

.work-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  transition:transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  min-width:0;
}

.work-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.11);
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.work-media{
  position:relative;
  aspect-ratio:4 / 3;
  overflow:hidden;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,.10), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.01));
}

.work-media iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  background:#07090d;
}

.featured-tag{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  font-size:.76rem;
  font-weight:600;
  color:#fff7e5;
  background:rgba(10,12,18,.65);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(8px);
}

.featured-tag::before{
  content:"★";
  color:var(--accent);
  font-size:.82rem;
}

.card-content{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  padding:16px 16px 18px;
}

.card-title{
  margin:0 0 6px;
  font-size:1.05rem;
  font-weight:700;
  letter-spacing:-.02em;
}

.card-meta{
  color:var(--muted);
  font-size:.88rem;
}

.card-link{
  white-space:nowrap;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#f2f4f8;
  font-size:.89rem;
  font-weight:600;
  padding:10px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  transition:.2s ease;
}

.card-link:hover{
  background:rgba(255,255,255,.07);
}

.works-grid.list-view .work-card{
  display:grid;
  grid-template-columns:minmax(320px, 36%) 1fr;
  align-items:stretch;
}

.works-grid.list-view .work-media{
  height:100%;
  min-height:240px;
  aspect-ratio:auto;
}

.works-grid.list-view .card-content{
  align-items:center;
  padding:22px;
}

.stills-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  margin-top:12px;
  margin-bottom:18px;
  padding-top:4px;
  border-top:1px solid rgba(255,255,255,.05);
}

.section-title-wrap h2{
  margin:0 0 8px;
  font-size:2.1rem;
  letter-spacing:-.04em;
}

.section-title-wrap p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.section-title-wrap strong{
  color:#f1e6ce;
  font-weight:700;
}

.view-all-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#eceef3;
  font-weight:600;
  padding:10px 0;
}

.stills-grid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0,1fr));
  gap:18px;
}

.still-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  min-height:220px;
  border:1px solid rgba(255,255,255,.07);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.14), transparent 22%),
    radial-gradient(circle at 75% 68%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(135deg, rgba(227,214,193,.16) 0%, rgba(128,135,157,.14) 35%, rgba(48,54,70,.18) 100%);
  box-shadow:var(--shadow);
  isolation:isolate;
  transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.still-card:hover{
  transform:translateY(-4px);
  border-color:rgba(255,255,255,.13);
  box-shadow:0 24px 70px rgba(0,0,0,.45);
}

.still-button{
  width:100%;
  height:100%;
  min-height:220px;
  padding:0;
  border:0;
  display:block;
  cursor:pointer;
  text-align:left;
  color:inherit;
  background:transparent;
  position:relative;
  overflow:hidden;
}

.still-button img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
  transition:transform .5s ease, filter .5s ease;
}

.still-card:hover img{
  transform:scale(1.04);
  filter:saturate(1.05) contrast(1.04);
}

.still-meta{
  position:absolute;
  left:8px;
  right:8px;
  bottom:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  z-index:2;
  padding:6px 8px;
  border-radius:11px;
  background:linear-gradient(180deg, rgba(5,7,11,.08), rgba(5,7,11,.50));
  backdrop-filter:blur(7px);
}

.still-text-wrap{
  min-width:0;
}

.still-title{
  display:block;
  margin:0;
  font-size:.74rem;
  font-weight:700;
  line-height:1.15;
  letter-spacing:0;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.still-sub{
  display:none;
}

.still-num{
  color:var(--accent);
  font-size:.64rem;
  font-weight:700;
  white-space:nowrap;
}

.placeholder .placeholder-shape{
  position:absolute;
  width:65%;
  height:65%;
  border-radius:35% 65% 53% 47% / 42% 44% 56% 58%;
  top:18%;
  left:18%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.70), rgba(255,255,255,.15) 38%, rgba(255,255,255,.04) 76%);
  filter:blur(.5px);
  opacity:.72;
  transform:rotate(var(--rot, 8deg));
  box-shadow:
    inset -24px -20px 40px rgba(0,0,0,.12),
    inset 14px 14px 30px rgba(255,255,255,.16);
}

.placeholder .still-button::before{
  content:"";
  position:absolute;
  inset:14px;
  border-radius:20px;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.18), transparent 18%),
    linear-gradient(160deg, rgba(255,255,255,.13), rgba(255,255,255,.03));
  opacity:.85;
}

.info-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  margin-top:34px;
}

.info-card{
  border-radius:28px;
  border:1px solid rgba(255,255,255,.07);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  padding:28px;
  box-shadow:var(--shadow);
}

.info-card h3{
  margin:0 0 12px;
  font-size:1.55rem;
  letter-spacing:-.03em;
}

.info-card p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
  font-size:1rem;
}

.process-list{
  display:grid;
  gap:16px;
  margin-top:10px;
}

.process-item{
  display:grid;
  grid-template-columns:40px 1fr;
  gap:14px;
  align-items:flex-start;
  padding:14px 0;
  border-top:1px solid rgba(255,255,255,.05);
}

.process-item:first-child{
  border-top:0;
  padding-top:0;
}

.step{
  width:40px;
  height:40px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:var(--accent);
  font-weight:700;
  font-size:.92rem;
}

.process-item strong{
  display:block;
  margin-bottom:6px;
  font-size:1rem;
}

.process-item span{
  color:var(--muted);
  line-height:1.7;
  font-size:.94rem;
}

.footer{
  width:min(var(--maxw), calc(100% - 36px));
  margin:0 auto;
  padding:32px 0 40px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.05);
}

.footer strong{
  color:#ebedf2;
}

.hidden{
  display:none !important;
}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  z-index:100;
  display:none;
  align-items:center;
  justify-content:center;
  padding:28px;
  background:rgba(0,0,0,.82);
  backdrop-filter:blur(18px);
}

.lightbox.active{
  display:flex;
}

.lightbox-inner{
  position:relative;
  max-width:min(1180px, 94vw);
  max-height:88vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.lightbox img{
  display:none;
  max-width:100%;
  max-height:78vh;
  object-fit:contain;
  border-radius:22px;
  box-shadow:0 30px 120px rgba(0,0,0,.6);
  border:1px solid rgba(255,255,255,.08);
  background:#090b10;
}

.lightbox.show-image img{
  display:block;
}

.lightbox-placeholder{
  display:none;
  width:min(880px, 88vw);
  height:min(620px, 68vh);
  min-height:360px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,.14), transparent 22%),
    radial-gradient(circle at 75% 68%, rgba(255,255,255,.08), transparent 24%),
    linear-gradient(135deg, rgba(227,214,193,.16) 0%, rgba(128,135,157,.14) 35%, rgba(48,54,70,.18) 100%);
  box-shadow:0 30px 120px rgba(0,0,0,.6);
  position:relative;
  overflow:hidden;
}

.lightbox.show-placeholder .lightbox-placeholder{
  display:block;
}

.lightbox-placeholder span{
  position:absolute;
  width:58%;
  height:58%;
  top:20%;
  left:21%;
  border-radius:35% 65% 53% 47% / 42% 44% 56% 58%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.72), rgba(255,255,255,.16) 38%, rgba(255,255,255,.04) 76%);
  box-shadow:
    inset -34px -30px 70px rgba(0,0,0,.16),
    inset 24px 24px 50px rgba(255,255,255,.18);
}

.lightbox-caption{
  position:relative;
  left:auto;
  right:auto;
  bottom:auto;
  width:100%;
  max-width:min(1180px, 94vw);
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:center;
  padding:9px 12px;
  border-radius:14px;
  background:rgba(5,7,11,.44);
  border:1px solid rgba(255,255,255,.07);
  backdrop-filter:blur(12px);
}

.lightbox-caption strong{
  font-size:.84rem;
}

.lightbox-caption span{
  color:var(--accent);
  font-size:.76rem;
  font-weight:700;
}

.lightbox-close,
.lightbox-nav{
  position:fixed;
  z-index:110;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(10,12,18,.58);
  color:#fff;
  backdrop-filter:blur(10px);
  cursor:pointer;
  transition:.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover{
  background:rgba(255,255,255,.12);
}

.lightbox-close{
  top:22px;
  right:22px;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:32px;
  line-height:1;
}

.lightbox-nav{
  top:50%;
  transform:translateY(-50%);
  width:54px;
  height:72px;
  border-radius:18px;
  font-size:44px;
  line-height:1;
}

.lightbox-prev{
  left:22px;
}

.lightbox-next{
  right:22px;
}

@media (max-width:1200px){
  .works-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .stills-grid{
    grid-template-columns:repeat(4, minmax(0,1fr));
  }

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-stage{
    min-height:420px;
  }

  .hero-static-image{
    width:100%;
    height:100%;
    object-position:center;
    mask-image:none;
    -webkit-mask-image:none;
  }

  .info-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:860px){
  .mobile-menu-button{
    display:block;
  }

  .topbar-inner{
    align-items:center;
  }

  .nav{
    position:absolute;
    top:74px;
    left:18px;
    right:18px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:14px;
    border-radius:22px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(5,7,11,.94);
    box-shadow:var(--shadow);
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    width:100%;
  }

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

  .stills-grid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .hero h1{
    font-size:clamp(2.5rem, 10vw, 4rem);
  }

  .works-grid.list-view .work-card{
    grid-template-columns:1fr;
  }

  .lightbox-nav{
    width:46px;
    height:60px;
    font-size:34px;
  }

  .lightbox-prev{
    left:10px;
  }

  .lightbox-next{
    right:10px;
  }
}

@media (max-width:560px){
  .site-shell{
    width:min(calc(100% - 10px), calc(var(--maxw) + 40px));
    border-radius:20px;
  }

  .hero,
  .section,
  .footer,
  .topbar-inner{
    width:min(calc(100% - 18px), var(--maxw));
  }

  .works-grid,
  .stills-grid{
    grid-template-columns:1fr;
  }

  .hero-stage{
    min-height:300px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .btn{
    width:100%;
    justify-content:center;
  }

  .card-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .card-link{
    width:100%;
    justify-content:center;
  }

  .lightbox{
    padding:14px;
  }

  .lightbox-caption{
    margin-top:10px;
    padding:8px 10px;
  }
}