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

:root{
  --green:#159447;
  --green-dark:#0e6832;
  --green-deep:#102b1d;
  --green-soft:#e5f2e9;

  --cream:#f4f1e9;
  --cream-dark:#e9e4d8;

  --white:#fffdf9;

  --text:#18241d;
  --muted:#6d786f;

  --border:#d8ded6;

  --dark:#102018;

  --shadow:0 16px 45px rgba(26,55,38,.09);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--cream);
  color:var(--text);
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}

body.search-active{
  overflow:hidden;
}

button,
input,
textarea,
select{
  font:inherit;
}

/* =====================================================
   COMMON
===================================================== */

.hidden{
  display:none !important;
}

.kicker{
  color:var(--green);
  font:800 12px 'Barlow Condensed',sans-serif;
  letter-spacing:2px;
}

.muted{
  color:var(--muted);
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  border:0;
  padding:13px 21px;
  border-radius:5px;
  font-size:11px;
  font-weight:800;
  letter-spacing:.6px;
  text-decoration:none;
  cursor:pointer;
  transition:.2s;
}

.btn.green{
  background:var(--green);
  color:#fff;
}

.btn.green:hover{
  background:var(--green-dark);
  transform:translateY(-1px);
}

.btn.light{
  background:rgba(255,255,255,.8);
  color:var(--dark);
  border:1px solid var(--border);
}

.btn.light:hover{
  background:#fff;
}

.full{
  width:100%;
}

/* =====================================================
   HEADER
===================================================== */

.topbar{
  height:70px;
  width:100%;
  background:rgba(255,253,249,.96);
  border-bottom:1px solid var(--border);
  display:flex;
  align-items:center;
  padding:0 5%;
  position:sticky;
  top:0;
  z-index:9999;
  backdrop-filter:blur(14px);
}

.brand{
  color:var(--dark);
  text-decoration:none;
  font-weight:900;
  font-size:25px;
  letter-spacing:-1px;
  white-space:nowrap;
}

.brand-mark{
  color:var(--green);
  margin-right:5px;
}

.desktop-nav{
  display:flex;
  gap:36px;
  margin:auto;
  height:100%;
  align-items:center;
  font-family:'Barlow Condensed',sans-serif;
  font-weight:800;
}

.desktop-nav a{
  display:flex;
  height:100%;
  align-items:center;
  color:#536158;
  text-decoration:none;
  font-size:15px;
  letter-spacing:.5px;
  position:relative;
}

.desktop-nav a:after{
  content:"";
  position:absolute;
  bottom:0;
  left:0;
  width:0;
  height:3px;
  background:var(--green);
  transition:.2s;
}

.desktop-nav a:hover,
.desktop-nav a.active{
  color:var(--green-dark);
}

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

.actions{
  display:flex;
  align-items:center;
  gap:8px;
  margin-left:auto;
}

.icon-btn,
.menu-btn{
  border:0;
  background:none;
  color:var(--dark);
  cursor:pointer;
}

.icon-btn{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  font-size:19px;
  border-radius:50%;
}

.icon-btn:hover{
  background:var(--green-soft);
}

.login{
  background:var(--green);
  color:#fff;
  border:0;
  padding:11px 17px;
  border-radius:5px;
  font-size:10px;
  font-weight:800;
  cursor:pointer;
  white-space:nowrap;
}

.login:hover{
  background:var(--green-dark);
}

.menu-btn{
  display:none;
  font-size:25px;
}

/* =====================================================
   SEARCH
===================================================== */

.search-overlay{
  position:fixed;
  inset:0;
  background:rgba(10,30,18,.72);
  backdrop-filter:blur(8px);
  z-index:60000;
  padding-top:105px;
}

.search-panel{
  width:min(760px,92%);
  margin:auto;
  background:var(--white);
  border-radius:10px;
  padding:8px;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow:0 30px 80px rgba(0,0,0,.3);
}

.search-symbol{
  padding-left:12px;
  font-size:18px;
}

.search-panel input{
  flex:1;
  min-width:0;
  border:0;
  outline:0;
  background:transparent;
  padding:15px 8px;
  font-size:17px;
  color:var(--text);
}

.search-close{
  width:44px;
  height:44px;
  border:0;
  border-radius:6px;
  background:var(--green-soft);
  color:var(--green-dark);
  font-size:26px;
  cursor:pointer;
}

/* =====================================================
   HERO
===================================================== */

.hero{
  min-height:550px;
  position:relative;
  overflow:hidden;
  display:flex;
  padding:80px 8%;
  background:
    linear-gradient(
      125deg,
      #fffdf9 0%,
      #f1eee5 60%,
      #dfeee3 100%
    );
}

.hero:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      90deg,
      rgba(255,253,249,.98) 0%,
      rgba(255,253,249,.78) 45%,
      rgba(255,253,249,0) 78%
    );
  pointer-events:none;
}

.hero-copy{
  position:relative;
  z-index:3;
  max-width:650px;
}

.hero h1{
  margin:12px 0 23px;
  font:900 clamp(68px,9vw,110px)/.82 'Barlow Condensed',sans-serif;
  letter-spacing:-3px;
  color:var(--dark);
}

.hero h1 span{
  display:block;
  color:var(--green);
}

.hero p{
  max-width:570px;
  margin:0;
  color:#58655d;
  font-size:16px;
  line-height:1.7;
}

.hero-buttons{
  display:flex;
  gap:10px;
  margin-top:28px;
}

.hero-proof{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:28px;
  color:#7c867f;
  font-size:11px;
}

.hero-proof strong{
  color:var(--dark);
}

.proof-dots{
  color:var(--green);
  letter-spacing:-5px;
  font-size:18px;
}

.hero-visual{
  position:absolute;
  right:5%;
  top:50%;
  transform:translateY(-50%);
  width:440px;
  height:440px;
  z-index:2;
}

.hero-circle{
  position:absolute;
  inset:35px;
  border-radius:50%;
  background:
    radial-gradient(
      circle at 40% 35%,
      #b7d6c1,
      #78ae8a 65%,
      #4d9166
    );
  box-shadow:
    0 30px 80px rgba(24,78,45,.18);
}

.hero-circle:before{
  content:"";
  position:absolute;
  inset:30px;
  border:1px solid rgba(255,255,255,.45);
  border-radius:50%;
}

.hero-number{
  position:absolute;
  left:90px;
  top:130px;
  color:#fff;
  font:900 145px/.8 'Barlow Condensed',sans-serif;
  letter-spacing:-8px;
}

.hero-number span{
  font-size:70px;
  color:#e8f5ec;
}

.hero-label{
  position:absolute;
  right:25px;
  bottom:80px;
  background:#fffdf9;
  padding:16px 20px;
  color:var(--dark);
  font:800 14px/1.05 'Barlow Condensed',sans-serif;
  letter-spacing:1px;
  box-shadow:var(--shadow);
}

/* =====================================================
   CATEGORIES
===================================================== */

.categories-wrap{
  padding:22px 5%;
  background:var(--white);
  border-bottom:1px solid var(--border);
}

.categories-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  max-width:1400px;
  margin:0 auto 12px;
}

.categories-head h2{
  margin:3px 0 0;
  font:800 28px 'Barlow Condensed',sans-serif;
  color:var(--dark);
}

.category-hint{
  display:none;
  color:#8b958e;
  font-size:9px;
}

.categories{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:10px;
}

.category-card{
  display:flex;
  align-items:center;
  gap:11px;
  padding:13px;
  border:1px solid var(--border);
  border-radius:7px;
  background:var(--cream);
  text-decoration:none;
  color:var(--dark);
  transition:.2s;
}

.category-card:hover{
  background:var(--green-soft);
  border-color:#a9ccb4;
  transform:translateY(-2px);
}

.category-card strong{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  background:#fffdf9;
  border-radius:50%;
  font-size:20px;
}

.category-card span{
  display:block;
  font:800 14px 'Barlow Condensed',sans-serif;
}

.category-card small{
  display:block;
  margin-top:2px;
  color:#87918b;
  font-size:9px;
}

/* =====================================================
   MAIN
===================================================== */

.content{
  max-width:1400px;
  margin:auto;
  padding:22px 4% 0;
  display:grid;
  grid-template-columns:minmax(0,1fr) 275px;
  gap:18px;
}

.latest{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:9px;
  padding:20px;
}

.section-title{
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:17px;
}

.section-title h2{
  margin:3px 0 0;
  font:800 31px 'Barlow Condensed',sans-serif;
  color:var(--dark);
}

.outline-btn{
  border:1px solid #b8d2bf;
  background:transparent;
  color:var(--green-dark);
  padding:8px 11px;
  border-radius:4px;
  font-size:9px;
  font-weight:800;
  cursor:pointer;
}

.outline-btn:hover{
  background:var(--green-soft);
}

/* =====================================================
   CARDS
===================================================== */

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

.card{
  background:#fff;
  border:1px solid var(--border);
  border-radius:7px;
  overflow:hidden;
  transition:.22s;
  cursor:pointer;
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}

.card-img{
  height:150px;
  background-size:cover;
  background-position:center;
}

.card-body{
  padding:13px;
}

.tag{
  color:var(--green);
  font-size:8px;
  font-weight:800;
  letter-spacing:1px;
}

.card h3{
  margin:7px 0 9px;
  font:700 20px/1.05 'Barlow Condensed',sans-serif;
  color:var(--dark);
}

.card-excerpt{
  color:#758078;
  font-size:10px;
  line-height:1.5;
  min-height:30px;
  margin:0 0 12px;
}

.card-meta{
  display:flex;
  justify-content:space-between;
  gap:5px;
  align-items:center;
  color:#919a94;
  font-size:8px;
}

.card-meta a{
  color:var(--green);
  text-decoration:none;
  font-weight:800;
}

/* =====================================================
   SIDEBAR
===================================================== */

.sidebar{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.about-card,
.subscribe{
  background:var(--green-deep);
  color:#fff;
  border-radius:9px;
  padding:22px;
}

.about-card .kicker,
.subscribe .kicker{
  color:#8fd0a6;
}

.about-card h3{
  margin:8px 0 13px;
  font:800 31px/.9 'Barlow Condensed',sans-serif;
}

.about-card h3 span{
  color:#8ed0a5;
}

.about-card p,
.subscribe p{
  color:#b9c8bf;
  font-size:10px;
  line-height:1.65;
}

.text-link{
  color:#8fd0a6;
  font-size:9px;
  font-weight:800;
  text-decoration:none;
}

.subscribe{
  background:#fffdf9;
  color:var(--dark);
  border:1px solid var(--border);
}

.subscribe h3{
  margin:8px 0 12px;
  font:800 29px/.9 'Barlow Condensed',sans-serif;
}

.subscribe p{
  color:#748078;
}

.subscribe input{
  width:100%;
  padding:11px;
  border:1px solid var(--border);
  background:var(--cream);
  outline:none;
  border-radius:4px;
  margin:3px 0 8px;
}

.subscribe .btn{
  width:100%;
}

.subscribe small{
  display:block;
  margin-top:9px;
  color:#969f99;
  font-size:8px;
}

/* =====================================================
   STATS
===================================================== */

.bottom-strip{
  max-width:880px;
  margin:16px auto 0;
  background:var(--white);
  border:1px solid var(--border);
  border-radius:8px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  padding:15px 25px;
  text-align:center;
}

.bottom-strip div+div{
  border-left:1px solid var(--border);
}

.bottom-strip b{
  display:block;
  color:var(--green);
  font:800 26px 'Barlow Condensed',sans-serif;
}

.bottom-strip span{
  color:#89938d;
  font-size:8px;
}

/* =====================================================
   FOOTER
===================================================== */

.footer{
  max-width:1400px;
  margin:25px auto 0;
  padding:25px 4%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid var(--border);
}

.footer .brand{
  font-size:20px;
}

.footer p{
  margin:4px 0 0;
  color:#89938d;
  font-size:9px;
}

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

.footer-links a{
  color:#66736b;
  text-decoration:none;
  font-size:10px;
  font-weight:700;
}

/* =====================================================
   DRAWER
===================================================== */

.drawer{
  position:fixed;
  right:-410px;
  top:70px;
  width:390px;
  height:calc(100vh - 70px);
  background:var(--white);
  border-left:1px solid var(--border);
  z-index:10000;
  padding:22px;
  transition:.25s;
  box-shadow:-20px 0 60px rgba(0,0,0,.12);
  overflow:auto;
}

.drawer.open{
  right:0;
}

.drawer-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid var(--border);
  padding-bottom:15px;
}

.drawer-head h2{
  margin:3px 0 0;
  font:800 28px 'Barlow Condensed',sans-serif;
}

.drawer-head button,
.close{
  border:0;
  background:none;
  color:var(--dark);
  font-size:30px;
  cursor:pointer;
}

.drawer-label{
  color:var(--green);
  font-size:9px;
  font-weight:800;
  letter-spacing:1.5px;
}

.mobile-nav{
  display:flex;
  flex-direction:column;
  padding:10px 0;
}

.mobile-nav a{
  color:var(--dark);
  text-decoration:none;
  font:800 24px 'Barlow Condensed',sans-serif;
  padding:12px 0;
  border-bottom:1px solid var(--border);
}

.drawer-divider{
  height:1px;
  background:var(--border);
  margin:16px 0;
}

.drawer-item{
  display:flex;
  gap:12px;
  padding:13px 0;
  border-bottom:1px solid var(--border);
  cursor:pointer;
}

.drawer-item img{
  width:70px;
  height:55px;
  object-fit:cover;
  border-radius:5px;
}

.drawer-item b{
  font:600 16px 'Barlow Condensed',sans-serif;
}

.drawer-item small{
  display:block;
  color:#89938d;
  margin-top:4px;
  font-size:9px;
}

/* =====================================================
   MODAL
===================================================== */

.modal{
  position:fixed;
  inset:0;
  background:rgba(8,25,15,.7);
  backdrop-filter:blur(5px);
  z-index:50000;
  display:grid;
  place-items:center;
  padding:18px;
}

.modal-box{
  width:min(400px,94%);
  background:var(--white);
  border-radius:10px;
  padding:28px;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,.3);
}

.modal-box h2{
  margin:5px 0 20px;
  font:800 38px 'Barlow Condensed',sans-serif;
}

.modal-box input{
  width:100%;
  padding:13px;
  margin-bottom:9px;
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:4px;
  outline:none;
}

.modal-box p{
  color:#77837c;
  font-size:10px;
}

.auth-switch{
  border:0;
  background:none;
  padding:0;
  color:var(--green);
  font-size:10px;
  font-weight:700;
  cursor:pointer;
}

/* =====================================================
   ARTICLE VIEW
===================================================== */

.article-view{
  width:min(900px,95%);
  max-height:90vh;
  overflow:auto;
  background:var(--white);
  border-radius:10px;
  padding:25px;
  position:relative;
}

.article-view>img{
  width:100%;
  max-height:390px;
  object-fit:cover;
  border-radius:6px;
  margin-bottom:18px;
}

.article-view h2{
  margin:8px 0 15px;
  color:var(--dark);
  font:800 48px/1 'Barlow Condensed',sans-serif;
}

#articleViewContent{
  color:#4f5c54;
  line-height:1.8;
  font-size:14px;
}

#articleViewContent img{
  max-width:100%;
}

.article-view .close{
  position:absolute;
  right:12px;
  top:5px;
  z-index:2;
}

/* =====================================================
   ADMIN
===================================================== */

.admin-panel{
  max-width:1400px;
  margin:20px auto;
  padding:25px 4%;
  border-top:1px solid var(--border);
}

.admin-panel h2{
  font:800 38px 'Barlow Condensed',sans-serif;
  margin:5px 0 15px;
}

.admin-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}

.admin-stats>div,
.admin-editor,
.admin-list{
  background:var(--white);
  border:1px solid var(--border);
  border-radius:7px;
}

.admin-stats>div{
  padding:18px;
  text-align:center;
}

.admin-stats b{
  display:block;
  color:var(--green);
  font:800 34px 'Barlow Condensed',sans-serif;
}

.admin-stats span{
  color:#87928c;
  font-size:9px;
}

.admin-editor,
.admin-list{
  padding:20px;
  margin-top:14px;
}

.admin-editor h3,
.admin-list h3{
  margin:0 0 15px;
  font:800 27px 'Barlow Condensed',sans-serif;
}

.admin-editor input,
.admin-editor select,
.admin-editor textarea{
  width:100%;
  padding:12px;
  margin-bottom:10px;
  background:var(--cream);
  border:1px solid var(--border);
  border-radius:4px;
  outline:none;
}

.admin-editor textarea{
  min-height:190px;
  resize:vertical;
}

.cover-upload label{
  display:block;
  margin-bottom:6px;
  color:#6b766f;
  font-size:10px;
  font-weight:800;
}

.cover-preview{
  margin-bottom:10px;
}

.cover-preview img{
  width:100%;
  max-height:300px;
  object-fit:cover;
  border-radius:5px;
}

.admin-row{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:13px 0;
  border-bottom:1px solid var(--border);
}

.admin-row b{
  font:600 17px 'Barlow Condensed',sans-serif;
}

.admin-row small{
  display:block;
  color:#89938d;
  margin-top:4px;
}

.admin-row button{
  border:1px solid var(--border);
  background:var(--cream);
  padding:7px 10px;
  border-radius:3px;
  font-size:9px;
  font-weight:800;
  cursor:pointer;
}

.admin-row button.danger{
  color:#c84d4d;
}

/* =====================================================
   RESPONSIVE TABLET
===================================================== */

@media(max-width:1050px){

  .desktop-nav{
    gap:22px;
  }

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

  .sidebar{
    display:grid;
    grid-template-columns:1fr 1fr;
  }

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

  .hero-visual{
    right:-80px;
    opacity:.65;
  }

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

}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:700px){

  body{
    background:#eeeae1;
  }

  .topbar{
    height:62px;
    padding:0 11px;
  }

  .brand{
    font-size:19px;
  }

  .desktop-nav{
    display:none;
  }

  .actions{
    gap:3px;
  }

  .icon-btn{
    width:37px;
    height:37px;
  }

  .login{
    padding:9px 10px;
    font-size:8px;
  }

  .menu-btn{
    display:block;
    padding:4px;
  }

  /* HERO */

  .hero{
    min-height:590px;
    padding:52px 20px 35px;
    display:block;
    background:
      linear-gradient(
        150deg,
        #fffdf9 0%,
        #f0ede4 70%,
        #dfeee3 100%
      );
  }

  .hero:after{
    background:
      linear-gradient(
        180deg,
        rgba(255,253,249,.8),
        rgba(255,253,249,.1)
      );
  }

  .hero-copy{
    max-width:none;
  }

  .hero h1{
    font-size:72px;
    letter-spacing:-2px;
    margin-top:10px;
  }

  .hero p{
    font-size:13px;
    line-height:1.65;
    max-width:330px;
  }

  .hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:stretch;
    max-width:260px;
    margin-top:22px;
  }

  .hero-buttons .btn{
    width:100%;
  }

  .hero-proof{
    margin-top:20px;
    font-size:9px;
  }

  .hero-visual{
    width:260px;
    height:260px;
    right:-15px;
    top:auto;
    bottom:-35px;
    transform:none;
    opacity:.8;
  }

  .hero-circle{
    inset:20px;
  }

  .hero-number{
    left:55px;
    top:75px;
    font-size:95px;
  }

  .hero-number span{
    font-size:45px;
  }

  .hero-label{
    right:0;
    bottom:42px;
    padding:11px 14px;
    font-size:10px;
  }

  /* CATEGORIES */

  .categories-wrap{
    padding:19px 0 17px;
    overflow:hidden;
  }

  .categories-head{
    padding:0 16px;
    margin-bottom:12px;
  }

  .categories-head h2{
    font-size:25px;
  }

  .category-hint{
    display:block;
  }

  .categories{
    display:flex;
    overflow-x:auto;
    gap:9px;
    padding:0 16px 5px;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
  }

  .categories::-webkit-scrollbar{
    display:none;
  }

  .category-card{
    flex:0 0 155px;
    min-height:76px;
    padding:11px;
    scroll-snap-align:start;
  }

  .category-card strong{
    width:35px;
    height:35px;
    font-size:18px;
  }

  .category-card span{
    font-size:13px;
  }

  .category-card small{
    font-size:8px;
  }

  /* CONTENT */

  .content{
    display:block;
    padding:12px 10px 0;
  }

  .latest{
    padding:14px;
    border-radius:9px;
  }

  .section-title{
    align-items:center;
  }

  .section-title h2{
    font-size:27px;
  }

  .outline-btn{
    font-size:8px;
    padding:8px;
  }

  .cards{
    grid-template-columns:1fr 1fr;
    gap:8px;
  }

  .card-img{
    height:105px;
  }

  .card-body{
    padding:9px;
  }

  .card h3{
    font-size:17px;
    margin:6px 0 8px;
  }

  .card-excerpt{
    font-size:8px;
    line-height:1.45;
    min-height:27px;
  }

  .card-meta{
    font-size:7px;
  }

  .card-meta a{
    font-size:7px;
  }

  /* SIDEBAR */

  .sidebar{
    display:flex;
    margin-top:10px;
  }

  .about-card,
  .subscribe{
    padding:18px;
  }

  .about-card h3,
  .subscribe h3{
    font-size:27px;
  }

  /* STATS */

  .bottom-strip{
    margin:10px;
    grid-template-columns:1fr 1fr;
    padding:14px 8px;
    gap:12px;
  }

  .bottom-strip div:nth-child(3){
    border-left:0;
  }

  /* FOOTER */

  .footer{
    margin-top:10px;
    padding:22px 15px;
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
  }

  /* DRAWER */

  .drawer{
    top:62px;
    width:100%;
    height:calc(100vh - 62px);
    right:-100%;
    padding:20px;
  }

  /* SEARCH */

  .search-overlay{
    padding-top:75px;
  }

  .search-panel{
    width:94%;
  }

  .search-panel input{
    font-size:15px;
  }

  /* MODAL */

  .modal-box{
    width:95%;
    padding:23px;
  }

  /* ARTICLE */

  .article-view{
    width:96%;
    padding:17px;
  }

  .article-view h2{
    font-size:36px;
  }

  .article-view>img{
    max-height:240px;
  }

  #articleViewContent{
    font-size:13px;
  }

  /* ADMIN */

  .admin-panel{
    padding:20px 10px;
  }

  .admin-stats{
    grid-template-columns:1fr;
  }

  .admin-row{
    flex-direction:column;
  }

}

/* =====================================================
   EXTRA SMALL
===================================================== */

@media(max-width:380px){

  .brand{
    font-size:17px;
  }

  .login{
    padding:8px 7px;
    font-size:7px;
  }

  .hero{
    min-height:570px;
  }

  .hero h1{
    font-size:62px;
  }

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

  .card-img{
    height:155px;
  }

  .category-card{
    flex-basis:145px;
  }

}
