/* =====================================================
   NOVOSTAVBY V BRATISLAVE - Modern Warm Design
   Color Palette:
   - Primary: #4a4a4a (warm dark gray)
   - Accent: #e85d04 (vibrant orange)
   - Accent Light: #f48c06 (light orange)
   - Background: #faf9f7 (warm white)
   - Beige: #f5f0e8 (soft beige)
   - Cards: #ffffff
   - Text: #3d3d3d
   - Muted: #7a7a7a
   ===================================================== */

/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #faf9f7;
  color: #3d3d3d;
  line-height: 1.6;
  font-size: 16px;
}

a {
  color: #e85d04;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: #c44d03;
}

/* District navigation links */
a.city {
  color: #666 !important;
}

a.city:hover {
  color: #3d3d3d !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */

.top-bar {
  background: #4a4a4a;
  padding: 10px 0;
  font-size: 0.85rem;
}

.top-bar .container {
  display: flex;
  justify-content: flex-end;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.top-bar a:hover {
  color: #f48c06;
}

.header {
  background: #ffffff;
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid #ebe6de;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: #3d3d3d;
  letter-spacing: -0.5px;
  margin: 0;
}

.logo a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo a::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
  border-radius: 12px;
}

.logo a:hover {
  color: #e85d04;
}

.tagline {
  display: none;
}

.header-nav {
  display: flex;
  gap: 6px;
}

.header-nav a {
  color: #5a5a5a;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.2s ease;
}

.header-nav a:hover {
  background: #f5f0e8;
  color: #3d3d3d;
}

.header-nav a.active {
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
  color: #ffffff;
}

.header-nav a.nav-search {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-nav a.nav-search svg {
  flex-shrink: 0;
}

/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  background: linear-gradient(135deg, #f5f0e8 0%, #faf9f7 50%, #f5f0e8 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(244, 140, 6, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #3d3d3d;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.3;
}

.hero-title span {
  color: #e85d04;
}

.hero-text {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: #6a6a6a;
  line-height: 1.8;
  text-align: center;
}

/* Search Box */
.search-box {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  background: #ffffff;
  padding: 6px;
  border-radius: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid #ebe6de;
}

.search-box input[type="text"] {
  flex: 1;
  border: none;
  padding: 16px 24px;
  font-size: 1rem;
  outline: none;
  background: transparent;
  color: #3d3d3d;
  border-radius: 60px;
}

.search-box input[type="text"]::placeholder {
  color: #9a9a9a;
}

.search-box button,
.search-box input[type="submit"] {
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
  color: #ffffff;
  border: none;
  padding: 16px 36px;
  border-radius: 60px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.search-box button:hover,
.search-box input[type="submit"]:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.35);
}

/* =====================================================
   DISTRICT NAVIGATION
   ===================================================== */

.district-nav {
  background: #ffffff;
  padding: 20px 0;
  border-bottom: 1px solid #ebe6de;
}

.district-nav-label {
  font-size: 0.75rem;
  color: #9a9a9a;
  text-align: center;
  margin-bottom: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.district-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.district-link {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  background: #f5f0e8;
  color: #5a5a5a;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.district-link:hover {
  border-color: #c0b8ac;
  color: #3d3d3d;
}

.district-link.active {
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
  color: #ffffff;
}

/* =====================================================
   SECTION TITLES
   ===================================================== */

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: #3d3d3d;
  margin-bottom: 32px;
  letter-spacing: -0.5px;
}

/* =====================================================
   HOMEPAGE LAYOUT
   ===================================================== */

.projects-section {
  padding: 60px 0 80px;
  background: #faf9f7;
}


/* Projects Grid 2x2 */
.projects-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .projects-grid-2x2 {
    grid-template-columns: 1fr;
  }
}

/* Projects Grid 3x2 */
.projects-grid-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
  .projects-grid-3x2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .projects-grid-3x2 {
    grid-template-columns: 1fr;
  }
}

/* News Section */
.news-section {
  padding: 60px 0;
  background: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.news-grid .news-item,
.news-grid .news-item:last-child {
  background: #ffffff;
  padding: 24px;
  padding-bottom: 24px;
  border-radius: 20px;
  border: 1px solid #ebe6de;
}


@media (max-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================================================
   PROJECT CARDS
   ===================================================== */

.project-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid #ebe6de;
}

.project-card:hover {
  border-color: #c0b8ac;
}

.project-card-image {
  display: block;
  position: relative;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}


.project-card-content {
  padding: 24px;
}

.project-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #3d3d3d;
  margin-bottom: 8px;
  line-height: 1.3;
}

.project-card-title a {
  color: inherit;
}

.project-card-title a:hover {
  color: #e85d04;
}

.project-card-location {
  font-size: 0.9rem;
  color: #e85d04;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.project-card-location::before {
  content: '';
  width: 14px;
  height: 20px;
  background: url('/img/gps.svg') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.project-card-description {
  font-size: 0.95rem;
  color: #6a6a6a;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #e85d04;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.project-card-link:hover {
  color: #c44d03;
  gap: 12px;
}

.project-card-link::after {
  content: '→';
  transition: transform 0.2s ease;
}

.project-card-link:hover::after {
  transform: translateX(4px);
}

/* =====================================================
   NEWS SIDEBAR
   ===================================================== */


.news-sidebar {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #ebe6de;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-item {
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f0e8;
}

.news-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.news-item-date {
  font-size: 0.8rem;
  color: #9a9a9a;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.news-item-text {
  font-size: 0.95rem;
  color: #5a5a5a;
  line-height: 1.6;
}

.news-item-text a {
  color: #e85d04;
  font-weight: 600;
}

.news-analysis-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #e85d04;
  font-weight: 600;
}

.news-analysis-link:hover {
  color: #c44d03;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 60px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: #4a4a4a;
  color: #ffffff;
}

.btn-primary:hover {
  color: #ffffff;
  background: #3d3d3d;
}

.btn-accent {
  background: linear-gradient(135deg, #e85d04 0%, #f48c06 100%);
  color: #ffffff;
}

.btn-accent:hover {
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #4a4a4a;
  border: 2px solid #ddd5c8;
}

.btn-outline:hover {
  background: #4a4a4a;
  color: #ffffff;
  border-color: #4a4a4a;
}

.text-center {
  text-align: center;
}

/* =====================================================
   FEATURED / RECOMMENDED SECTION
   ===================================================== */

.featured-section {
  background: #f5f0e8;
  padding: 60px 0;
  margin-top: 0;
}

.featured-card {
  display: flex;
  background: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid #ebe6de;
}

.featured-card-image {
  flex: 0 0 45%;
  max-width: 45%;
}

.featured-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 768px) {
  .featured-card {
    flex-direction: column;
  }

  .featured-card-image {
    flex: none;
    max-width: 100%;
  }
}

/* =====================================================
   FOOTER
   ===================================================== */

.footer {
  background: #4a4a4a;
  color: #ffffff;
  padding: 40px 0;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-brand h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.3px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: #f48c06;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a:hover {
  color: #f48c06;
}

@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* =====================================================
   PROJECT LIST (for other pages)
   ===================================================== */

.projects-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.project-row {
  display: flex;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #ebe6de;
  transition: all 0.3s ease;
}

.project-row:hover {
  border-color: #c0b8ac;
}

.project-row-image {
  flex: 0 0 320px;
}

.project-row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-row-content {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-card-text {
  font-size: 1rem;
  color: #6a6a6a;
  line-height: 1.7;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .project-row {
    flex-direction: column;
  }

  .project-row-image {
    flex: none;
  }
}

/* =====================================================
   PROJECT DETAIL
   ===================================================== */

.project-detail {
  padding: 48px 0 80px;
}

.project-detail-content {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #ebe6de;
  margin-bottom: 32px;
}

.project-detail-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #3d3d3d;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.project-detail-location {
  font-size: 1.1rem;
  color: #e85d04;
  font-weight: 600;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-detail-location::before {
  content: '';
  width: 16px;
  height: 23px;
  background: url('/img/gps.svg') no-repeat center;
  background-size: contain;
  flex-shrink: 0;
}

.project-detail-location a {
  color: #e85d04;
}

.project-detail-location a:hover {
  color: #c44d03;
}

.project-detail-text {
  font-size: 1.05rem;
  color: #5a5a5a;
  line-height: 1.8;
  margin-bottom: 24px;
}

.project-detail-completion,
.project-detail-developer {
  font-size: 1rem;
  color: #6a6a6a;
  margin-bottom: 16px;
}

.project-detail-address {
  background: #f5f0e8;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #ebe6de;
}

.project-detail-address a {
  color: #3d3d3d;
  font-weight: 700;
  font-size: 1.1rem;
}

.project-detail-address a:hover {
  color: #e85d04;
}

.project-detail-developer a {
  color: #e85d04;
  font-weight: 600;
}

.project-detail-image {
  margin-top: 32px;
}

.project-detail-image img {
  width: 100%;
  border-radius: 16px;
}

@media (max-width: 768px) {
  .project-detail-content {
    padding: 28px;
  }

  .project-detail-title {
    font-size: 1.75rem;
  }
}

/* =====================================================
   CONTENT PAGES (O nás, Reklama, etc.)
   ===================================================== */

.content-section {
  padding: 48px 0 80px;
}

.content-wrapper {
  max-width: 960px;
}

.intro-text {
  font-size: 1.2rem;
  color: #6a6a6a;
  line-height: 1.7;
  margin-bottom: 48px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .content-grid {
    grid-template-columns: 1fr;
  }
}

.content-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #ebe6de;
}

.content-card h3 {
  color: #3d3d3d;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.content-card p {
  color: #6a6a6a;
  line-height: 1.7;
}

.styled-list {
  list-style: none;
}

.styled-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #5a5a5a;
}

.styled-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #e85d04;
  border-radius: 50%;
}

.content-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-card {
  background: #4a4a4a;
  border-radius: 16px;
  padding: 28px;
  text-align: center;
}

.cta-card h3 {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.cta-secondary {
  background: #ffffff;
  border: 1px solid #ebe6de;
}

.cta-secondary h3 {
  color: #3d3d3d;
}

.cta-secondary p {
  color: #6a6a6a;
}

.email-inline {
  color: #e85d04;
  font-weight: 600;
}

.note {
  font-size: 0.9rem;
  color: #9a9a9a;
  line-height: 1.6;
  grid-column: 1;
}

.business-info {
  color: #6a6a6a;
  line-height: 1.6;
}

.business-info small {
  color: #9a9a9a;
  font-size: 0.85rem;
}

/* =====================================================
   NEWS ARCHIVE
   ===================================================== */

.news-archive-section {
  padding: 48px 0 80px;
}

.news-archive-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.news-archive-item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #ebe6de;
}

.news-archive-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.news-archive-item-date {
  font-size: 0.85rem;
  color: #9a9a9a;
  font-weight: 600;
}

.news-archive-item-badge {
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-archive-item-badge.novinka {
  background: #f5f0e8;
  color: #5a5a5a;
}

.news-archive-item-badge.analyza {
  background: #fff0e6;
  color: #e85d04;
}

.news-archive-item-text {
  color: #5a5a5a;
  line-height: 1.7;
}

.news-archive-item-text a {
  color: #e85d04;
  font-weight: 600;
}

.analysis-detail-section {
  padding: 48px 0 80px;
}

.analysis-detail-content {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #ebe6de;
}

.analysis-detail-title {
  font-size: 2rem;
  font-weight: 800;
  color: #3d3d3d;
  margin-bottom: 24px;
}

.analysis-detail-text {
  color: #5a5a5a;
  line-height: 1.8;
}

.analysis-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  color: #e85d04;
  font-weight: 600;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.pagination a {
  padding: 12px 20px;
  background: #ffffff;
  border: 1px solid #ebe6de;
  border-radius: 60px;
  color: #4a4a4a;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: #4a4a4a;
  color: #ffffff;
  border-color: #4a4a4a;
}

/* =====================================================
   EMPTY STATE
   ===================================================== */

.empty-state {
  background: #ffffff;
  border: 2px dashed #ddd5c8;
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
}

.empty-state p {
  font-size: 1.1rem;
  color: #9a9a9a;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */

@media (max-width: 1024px) {
  .header {
    padding: 20px 0;
  }

  .header-content {
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  .header-nav {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero-title {
    font-size: 1.6rem;
  }

  .hero-text {
    font-size: 1.05rem;
  }

  .search-box {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border-radius: 20px;
  }

  .search-box input[type="text"] {
    text-align: center;
  }

  .search-box button,
  .search-box input[type="submit"] {
    width: 100%;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .district-link {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .district-nav {
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .logo a::before {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .header-nav a {
    padding: 8px 12px;
    font-size: 0.85rem;
  }

  .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .hero-title {
    font-size: 1.4rem;
  }
}

/* =====================================================
   UTILITIES
   ===================================================== */

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
