@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Archivo:wght@500;600;700;800;900&display=swap');

:root {
  --primary: #0f172a;       /* Slate 900 */
  --primary-light: #1e293b; /* Slate 800 */
  --accent: #d97706;        /* Amber 600 */
  --accent-hover: #b45309;  /* Amber 700 */
  --accent-light: #fef3c7;  /* Amber 100 */
  --bg: #f8fafc;            /* Slate 50 */
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-light: #f8fafc;
  --text-muted: #64748b;    /* Slate 500 */
  --border: #e2e8f0;        /* Slate 200 */
  --blueprint: rgba(15, 23, 42, 0.06);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-sm: 6px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --font-display: 'Archivo', 'Outfit', sans-serif;
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--primary);
  font-weight: 700;
  line-height: 1.2;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.015em;
  font-stretch: 110%;
}

p {
  color: var(--text-muted);
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-hover);
}

/* Visible focus rings — accessibility (replaces browser default which is hidden on many themes) */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.btn:focus-visible,
.project-card:focus-visible {
  outline-offset: 4px;
}

/* Skip link — keyboard users jump past nav */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 2000;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  color: white;
}

/* Body-context links get underlines (don't rely on color alone) */
.card-text a,
.contact-info-text a,
.privacy-container a,
p a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.card-text a:hover,
.contact-info-text a:hover,
.privacy-container a:hover,
p a:hover {
  text-decoration-thickness: 2px;
}

/* Reduced motion — respect user preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .project-card:hover img,
  .card:hover,
  .card:hover .card-img-wrapper img,
  .btn:hover {
    transform: none !important;
  }
}

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

/* Layout Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.section-bg {
  background-color: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Blueprint motif — faint architectural grid + measurement-tick dividers */
.section-blueprint {
  position: relative;
  background-color: #ffffff;
  background-image:
    linear-gradient(var(--blueprint) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint) 1px, transparent 1px);
  background-size: 56px 56px, 56px 56px;
  background-position: -1px -1px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-blueprint::before,
.section-blueprint::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    to right,
    var(--primary) 0 1px,
    transparent 1px 14px
  );
  opacity: 0.35;
}

.section-blueprint::before {
  top: 0;
  mask-image: linear-gradient(to bottom, #000 0 6px, transparent 6px);
  -webkit-mask-image: linear-gradient(to bottom, #000 0 6px, transparent 6px);
}

.section-blueprint::after {
  bottom: 0;
  mask-image: linear-gradient(to top, #000 0 6px, transparent 6px);
  -webkit-mask-image: linear-gradient(to top, #000 0 6px, transparent 6px);
}

.section-blueprint > .container {
  position: relative;
  z-index: 1;
}

/* Decorative blueprint scale-rule between sections */
.blueprint-rule {
  height: 28px;
  position: relative;
  background-color: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.blueprint-rule::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(to right, var(--primary) 0 1px, transparent 1px 12px),
    repeating-linear-gradient(to right, var(--primary) 0 1px, transparent 1px 60px);
  background-size: 12px 8px, 60px 14px;
  background-position: 0 100%, 0 100%;
  background-repeat: repeat-x;
  opacity: 0.4;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.section-header h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: var(--accent);
  border-radius: 2px;
}

/* Grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background-color: white;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background-color: var(--primary);
  color: white;
}

.btn-dark:hover {
  background-color: var(--primary-light);
  color: white;
  transform: translateY(-2px);
}

/* Header & Sticky Navbar */
.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(8px);
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-text {
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-subtext {
  color: var(--accent);
  font-size: 0.8rem;
  display: block;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: -2px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(15, 23, 42, 0.35) 0%, rgba(15, 23, 42, 0.75) 55%, rgba(0, 0, 0, 0.95) 100%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.65) 45%, rgba(0, 0, 0, 0.92) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.22;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
}

.hero-content {
  z-index: 3;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tagline {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}

.hero-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

/* Cards & Grid items */
.card {
  background-color: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.card-img-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  background-color: var(--primary);
}

.card-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.card:hover .card-img-wrapper img {
  transform: scale(1.05);
}

.card-body {
  padding: 1.75rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.card-text {
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

/* Card CTA — meets 44px touch target, clear hover state, no underline */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--accent);
  text-decoration: none;
  position: relative;
}
.card-link::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.25s ease;
}
.card-link:hover {
  color: var(--accent-hover);
  text-decoration: none;
}
.card-link:hover::after {
  transform: translateX(4px);
}
.card-link::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.card-link:hover::before {
  opacity: 1;
}

/* Cinematic project showcase — editorial, architecture-studio feel */
.projects-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.projects-eyebrow::before,
.projects-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--border) 70%, transparent);
}

.projects-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.projects-header h2 {
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 0.98;
  margin: 0;
}

.projects-header p {
  font-size: 1.05rem;
  max-width: 48ch;
}

@media (min-width: 900px) {
  .projects-header {
    grid-template-columns: 1.4fr 1fr;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(0, auto);
  }
  .project-card:nth-child(1) { grid-column: span 4; aspect-ratio: 16 / 11; }
  .project-card:nth-child(2) { grid-column: span 2; aspect-ratio: 3 / 4; }
  .project-card:nth-child(3) { grid-column: span 2; aspect-ratio: 3 / 4; }
  .project-card:nth-child(4) { grid-column: span 4; aspect-ratio: 16 / 11; }
}

.project-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background-color: var(--primary);
  isolation: isolate;
  aspect-ratio: 4 / 3;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.5s ease;
  filter: saturate(0.92) contrast(1.02);
}

.project-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0) 35%, rgba(15, 23, 42, 0.55) 70%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.project-card:hover img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.05);
}

.project-meta {
  position: absolute;
  left: 1.75rem;
  right: 1.75rem;
  bottom: 1.5rem;
  z-index: 2;
  color: white;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.project-index {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.project-index::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.project-name {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: white;
  margin: 0;
}

.project-location {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.project-location span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

/* Gallery-Specific portfolio styles */
.gallery-filters {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border);
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--accent);
  color: white;
  border-color: var(--accent);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gallery-item.hidden {
  display: none;
}

/* Feature Lists / Icon Lists */
.icon-list {
  list-style: none;
}

.icon-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.icon-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

/* About Section & Legacy Grid */
.stat-box {
  background-color: white;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
}

/* Contact Info & Forms */
.contact-info-list {
  list-style: none;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.75;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-text h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-info-text p,
.contact-info-text a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-info-text a:hover {
  color: var(--accent);
}

.contact-form {
  background-color: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--bg);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: white;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Footer styling */
.site-footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 2rem 0;
  border-top: 5px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.footer-links h4,
.footer-contact h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent);
}

.footer-links-list {
  list-style: none;
}

.footer-links-list li {
  margin-bottom: 0.75rem;
}

.footer-links-list a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.footer-links-list a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-license {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-bottom-links {
  margin-top: 0.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0.5rem;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

/* Privacy Page / Terms of service */
.privacy-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.privacy-container h1 {
  font-size: 2.25rem;
  margin-bottom: 2rem;
}

.privacy-container h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem 0;
}

.privacy-container p {
  margin-bottom: 1.25rem;
  color: #334155;
  font-size: 0.975rem;
}

/* Responsive Breakpoints */

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .site-header {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--primary);
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-toggle {
    display: block;
  }
}
