/* ================= GLOBAL RESET ================= */

*, *::before, *::after{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: inherit;
    transition: color .15s ease;
}

img{
    max-width: 100%;
    height: auto;
    display: block;
}

/* Focus visible for accessibility */
:focus-visible{
    outline: 2px solid rgba(0, 40, 76, 0.6);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Fade-in animation */
@keyframes fadeInUp{
    from{ opacity: 0; transform: translateY(24px); }
    to{ opacity: 1; transform: translateY(0); }
}

/* ================= HERO ================= */

body{
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #0b1220;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#main{
    background: transparent;
    position: relative;
}

/* HERO SECTION */
.hero{
    padding-top: 110px;
    padding-bottom: 80px;
    background:
        radial-gradient(900px 450px at 10% 15%, rgba(255, 129, 61, 0.18), transparent 60%),
        radial-gradient(900px 450px at 85% 20%, rgba(0, 40, 76, 0.20), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.hero-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 48px;
    align-items: center;
}

/* LEFT */
.hero-kicker{
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(11, 18, 32, 0.65);
    margin-bottom: 12px;
}

.hero-title{
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.hero-subtitle{
    font-size: 18px;
    line-height: 1.6;
    color: rgba(11, 18, 32, 0.75);
    max-width: 60ch;
    margin-bottom: 24px;
}

/* BUTTONS */
.hero-actions{
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn{
    height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .15s ease;
}

.btn-primary{
    background: rgba(0, 40, 76, 0.95);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 40, 76, 0.2);
}

.btn-primary:hover{
    background: rgba(0, 40, 76, 1);
}

.btn-secondary{
    border: 1px solid rgba(11, 18, 32, 0.2);
    color: rgba(11, 18, 32, 0.9);
    background: transparent;
}

.btn-secondary:hover{
    background: rgba(11, 18, 32, 0.05);
    border-color: rgba(11, 18, 32, 0.3);
}

/* TAGS */
.hero-pills{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.pill{
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(11, 18, 32, 0.12);
}

/* RIGHT */
.hero-right{
    display: flex;
    justify-content: flex-end;
}

/* ====== ÚJ: HERO FOTÓ KÁRTYA (a régi hero-mark helyett) ====== */
/* HTML-ben majd ezt használd:
   <div class="hero-visual">
     <img src="FOTO.jpg" alt="Enterpartner műhely / fejlesztés" class="hero-photo">
   </div>
*/
.hero-visual{
    width: 420px;
    aspect-ratio: 16 / 9;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(11, 18, 32, 0.10);
    box-shadow: 0 24px 60px rgba(11, 18, 32, 0.12);
    position: relative;
}

.hero-photo{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: rgba(11, 18, 32, 0.03);
}

/* finom overlay, hogy passzoljon a designhoz */
.hero-visual::after{
    content:"";
    position:absolute;
    inset:0;
    background:
      linear-gradient(120deg, rgba(255,129,61,0.10), transparent 35%),
      linear-gradient(240deg, rgba(0,40,76,0.14), transparent 45%);
    pointer-events:none;
}

/* ha mégis meghagynád az absztrakt mark-ot, ez maradhat, de nem kell */
.hero-mark{ display:none; }

/* RESPONSIVE */
@media (max-width: 900px){
    .hero-inner{
        grid-template-columns: 1fr;
    }
    .hero-right{
        justify-content: flex-start;
        margin-top: 40px;
    }
    .hero-visual{
        width: min(520px, 100%);
    }
}

/* ================= CONTENT SECTIONS ================= */

.section{
    padding: 90px 0;
    animation: fadeInUp 0.6s ease both;
}

.section-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section header */
.section-head{
    max-width: 720px;
    margin-bottom: 48px;
}

.section-head h2{
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -0.015em;
    margin-bottom: 12px;
}

.section-head p{
    font-size: 17px;
    line-height: 1.6;
    color: rgba(11, 18, 32, 0.7);
}

/* Areas */
.section-areas{
    background: #ffffff;
}

.area-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Card */
.area-card{
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.1);
    border-radius: 18px;
    padding: 28px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.area-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 18, 32, 0.12);
}

.area-icon{
    font-size: 28px;
    margin-bottom: 14px;
}

.area-card h3{
    font-size: 20px;
    margin-bottom: 10px;
	color: rgba(11, 18, 32, 0.95); /* majdnem fekete */
}

.area-card p{
    font-size: 15px;
    line-height: 1.6;
	color: rgba(11, 18, 32, 0.72);
}

.area-link{
  text-decoration: none;
  color: inherit;
  display: block;
}


/* CTA link */
.area-cta{
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  font-size: 14px;

  color: rgba(0, 40, 76, 0.85);   /* VISSZAFOGOTT brand-kék */
  text-decoration: none;

  transition: color .15s ease, transform .15s ease;
}

.area-cta:hover{
  color: rgba(255, 129, 61, 0.95); /* narancs hover */
  transform: translateX(2px);
}



/* Responsive */
@media (max-width: 900px){
    .area-cards{
        grid-template-columns: 1fr;
    }
}

/* ================= RESULTS ================= */

.section-results{
    background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
    border-top: 1px solid rgba(11, 18, 32, 0.06);
    border-bottom: 1px solid rgba(11, 18, 32, 0.06);
}

.results-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

/* Result card */
.result-card{
    background: #ffffff;
    border: 1px solid rgba(11, 18, 32, 0.1);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform .15s ease, box-shadow .15s ease;
}

.result-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(11, 18, 32, 0.12);
}

.result-card.highlight{
    border-color: rgba(255, 129, 61, 0.45);
    box-shadow: 0 12px 30px rgba(255, 129, 61, 0.18);
}

.result-number{
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: rgba(0, 40, 76, 0.95);
}

.result-text{
    font-size: 15px;
    line-height: 1.55;
    color: rgba(11, 18, 32, 0.75);
}

.result-text strong{
    color: rgba(11, 18, 32, 0.95);
}

/* CTA */
.results-cta{
    margin-top: 40px;
}

/* Responsive */
@media (max-width: 1000px){
    .results-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px){
    .results-grid{
        grid-template-columns: 1fr;
    }
}

/* ================= METHOD ================= */

.section-method{
    background: #ffffff;
}

.method-steps{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

/* Step */
.method-step{
    display: flex;
    gap: 20px;
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(11, 18, 32, 0.1);
    background: #ffffff;
}

.step-index{
    font-size: 28px;
    font-weight: 700;
    color: rgba(0, 40, 76, 0.95);
    min-width: 48px;
}

.step-content h3{
    font-size: 20px;
    margin-bottom: 8px;
}

.step-content p{
    font-size: 15px;
    line-height: 1.6;
    color: rgba(11, 18, 32, 0.75);
}

/* Responsive */
@media (max-width: 900px){
    .method-steps{
        grid-template-columns: 1fr;
    }
}

/* ================= FIT ================= */

.section-fit{
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    border-top: 1px solid rgba(11, 18, 32, 0.06);
}

.fit-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 48px;
}

/* Cards */
.fit-card{
    border-radius: 18px;
    padding: 28px;
    border: 1px solid rgba(11, 18, 32, 0.1);
    background: #ffffff;
}

.fit-card h3{
    font-size: 20px;
    margin-bottom: 16px;
}

.fit-card ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.fit-card li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(11, 18, 32, 0.8);
}

.fit-card li::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(0, 40, 76, 0.9);
    font-size: 18px;
    line-height: 1;
}

/* Variants */
.fit-card.positive{
    border-color: rgba(0, 40, 76, 0.25);
}

.fit-card.negative{
    border-color: rgba(255, 129, 61, 0.35);
}

/* Note */
.fit-note{
    max-width: 720px;
    margin-top: 40px;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(11, 18, 32, 0.75);
}

/* Responsive */
@media (max-width: 900px){
    .fit-grid{
        grid-template-columns: 1fr;
    }
}

/* ================= CONTACT ================= */

.section-contact{
    background: #0b1220;
    color: rgba(255,255,255,0.92);
    padding: 90px 0;
}

.section-contact .section-head p{
    color: rgba(255,255,255,0.72);
}

.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left side */
.contact-cards{
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.contact-card{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 16px;
    padding: 16px 18px;
}

.contact-label{
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.62);
    margin-bottom: 6px;
}

.contact-value{
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
}

.section-contact a{
    color: rgba(255,255,255,0.95);
}

.section-contact a:hover{
    color: rgba(255,255,255,1);
}

.contact-legal{
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.70);
}

/* Right panel */
.contact-panel{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 18px;
    padding: 26px;
}

.contact-panel h3{
    font-size: 18px;
    margin-bottom: 12px;
    color: rgba(255,255,255,0.95);
}

.contact-panel ul{
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
}

.contact-panel li{
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
}

.contact-panel li::before{
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 129, 61, 0.85);
    font-size: 18px;
    line-height: 1;
}

.contact-actions{
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* Buttons on dark */
.section-contact .btn-primary{
    background: rgba(255, 129, 61, 0.95);
    color: #0b1220;
    box-shadow: 0 14px 40px rgba(255, 129, 61, 0.20);
}

.section-contact .btn-primary:hover{
    background: rgba(255, 129, 61, 1);
}

.section-contact .btn-secondary{
    border-color: rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.92);
}

.section-contact .btn-secondary:hover{
    border-color: rgba(255,255,255,0.32);
}

/* Footer */
.site-footer{
    background: #07101e;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.70);
    padding: 18px 0;
}

.footer-inner{
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    font-size: 13px;
}

.footer-right{
    color: rgba(255,255,255,0.60);
}

/* Responsive */
@media (max-width: 950px){
    .contact-grid{
        grid-template-columns: 1fr;
    }
    .footer-inner{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================= NAV ================= */

/* nav links already inherit from global a reset */

.site-nav{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;

    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(11, 18, 32, 0.08);
}

.nav-inner{
    max-width: 1180px;
    margin: 0 auto;
    padding: 12px 24px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-brand{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(11, 18, 32, 0.95);
    min-width: 220px;
}

.brand-logo{
    height: 38px;
    width: auto;
    display: block;
}

.brand-text{
    font-weight: 800;
    letter-spacing: 0.08em;
    font-size: 15px;
    line-height: 1;
}

.nav-links{
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}

.nav-links a{
    font-weight: 600;
    font-size: 16px;
    color: rgba(11, 18, 32, 0.78);
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: background-color .12s ease, border-color .12s ease, color .12s ease;
    position: relative;
    white-space: nowrap;
}

.nav-links a:hover{
    background: rgba(11, 18, 32, 0.04);
    border-color: rgba(11, 18, 32, 0.08);
    color: rgba(11, 18, 32, 0.95);
}

.nav-links a.is-active{
    color: rgba(0, 40, 76, 0.98);
    background: rgba(0, 40, 76, 0.05);
    border-color: rgba(0, 40, 76, 0.10);
}

.nav-links a.is-active::after{
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 6px;
    height: 2px;
    border-radius: 2px;
    background: rgba(255, 129, 61, 0.95);
}

.nav-links .nav-cta{
    background: rgba(0, 40, 76, 0.95);
    color: #fff;
    border-color: rgba(0, 40, 76, 0.15);
    padding: 10px 14px;
    margin-left: 6px;
}

.nav-links .nav-cta:hover{
    background: rgba(0, 40, 76, 1);
    color: #fff;
    border-color: rgba(0, 40, 76, 0.25);
}

.nav-links .nav-cta.is-active{
    color: #fff;
	background: rgba(0, 40, 76, 1);
    border-color: rgba(255, 129, 61, 0.35);
}

/* hamburger */
.nav-toggle{
    display: none;
    border: 1px solid rgba(11, 18, 32, 0.12);
    background: rgba(255,255,255,0.65);
    border-radius: 12px;
    padding: 10px 10px;
    cursor: pointer;
}

.nav-toggle-bar{
    display: block;
    width: 22px;
    height: 2px;
    background: rgba(11, 18, 32, 0.75);
    border-radius: 2px;
}

.nav-toggle-bar + .nav-toggle-bar{
    margin-top: 5px;
}

html{
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}
/* FIX: anchor ugrásnál ne takarja ki a fixed navbar */
#kapcsolat{
  scroll-margin-top: 120px; /* emeld/csökkentsd, amíg tökéletes */
}
 

/* Responsive: hamburger menü */
@media (max-width: 980px){
    .nav-toggle{
        display: inline-flex;
        flex-direction: column;
        gap: 0;
        align-items: center;
        justify-content: center;
    }

    .nav-links{
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 6px;

        padding: 10px;
        border: 1px solid rgba(11, 18, 32, 0.08);
        background: rgba(255,255,255,0.72);
        border-radius: 16px;
    }

    .nav-links.is-open{
        display: flex;
    }

    .nav-links a{
        padding: 12px 12px;
    }

    .nav-inner{
        flex-wrap: wrap;
    }

    .nav-brand{
        min-width: unset;
    }
}


/* ==========================================================
   PUBLIKÁCIÓK (publikaciok.html) – EGYSÉGES, DUPLIKÁCIÓ MENTES
   ========================================================== */

/* HERO */
.pub-hero{
  padding-top: 110px;
  padding-bottom: 54px;
  background:
    radial-gradient(900px 450px at 10% 15%, rgba(255,129,61,.18), transparent 60%),
    radial-gradient(900px 450px at 85% 20%, rgba(0,40,76,.20), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border-bottom: 1px solid rgba(11,18,32,.08);
}

.pub-hero-inner{
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: start;
}

.pub-title{
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
}

.pub-subtitle{
  font-size: 18px;
  line-height: 1.6;
  color: rgba(11,18,32,.75);
  max-width: 62ch;
  margin: 0 0 22px 0;
}

.pub-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 10px 0 16px 0;
}

/* JOBB OLDALI PANEL */
.pub-hero-panel{
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(11,18,32,.10);
  padding: 20px;
}

/* METRIKÁK */
.pub-metric{
  display: grid;
  grid-template-columns: minmax(56px,auto) 1fr;
  align-items: center;
  gap: 18px;
  padding: 12px 8px;
  border-bottom: 1px solid rgba(11,18,32,.08);
}

.pub-hero-panel .pub-metric:last-of-type{
  border-bottom: none;
}

.pub-metric-value{
  font-weight: 800;
  font-size: 28px;
  color: rgba(0,40,76,.95);
  text-align: right;
  min-width: 56px;
}

.pub-metric-label{
  font-size: 14px;
  color: rgba(11,18,32,.72);
}

.pub-metric-note{
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11,18,32,.70);
}

/* KIEMELT / LISTA ALAPOK */
.pub-featured{
  background: #ffffff;
}

.pub-list{
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
  border-top: 1px solid rgba(11,18,32,.06);
}

.pub-featured-grid,
.pub-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* KÁRTYÁK */
.pub-card{
  background: #ffffff;
  border: 1px solid rgba(11,18,32,.10);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}

.pub-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11,18,32,.10);
}

.pub-card-featured{
  border-color: rgba(0,40,76,.16);
}

/* statikus kártyák: ne legyen kattintható érzet */
.pub-card.is-static{
  cursor: default;
}

.pub-card.is-static:hover{
  transform: none;
  box-shadow: none;
}

/* META / BADGE */
.pub-meta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.pub-date{
  font-size: 13px;
  color: rgba(11,18,32,.62);
}

.pub-badge{
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,40,76,.06);
  border: 1px solid rgba(0,40,76,.12);
  color: rgba(0,40,76,.95);
}

.pub-badge.alt{
  background: rgba(255,129,61,.10);
  border-color: rgba(255,129,61,.22);
  color: rgba(255,129,61,.95);
}

.pub-badge-gold{
  background: rgba(255,201,61,.18);
  border-color: rgba(255,201,61,.35);
  color: rgba(11,18,32,.92);
}

.pub-badge-silver{
  background: rgba(160,170,185,.18);
  border-color: rgba(160,170,185,.35);
  color: rgba(11,18,32,.92);
}

/* TARTALOM */
.pub-card-title{
  font-size: 16px;
  line-height: 1.45;
  margin: 10px 0;
}

.pub-card-excerpt{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11,18,32,.75);
}

/* TAG-ek */
.pub-tags{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11,18,32,.04);
  border: 1px solid rgba(11,18,32,.08);
  color: rgba(11,18,32,.78);
}

/* LINK / AKCIÓK */
.pub-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 14px;
}

/* featured alján a linkek (Cikk/Fotógaléria) igazodjanak */
.pub-card-featured .pub-actions{
  margin-top: 10px;
}

/* egységes “site link” stílus */
.pub-link{
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: rgba(0,40,76,.95);
  border-bottom: 1px solid rgba(0,40,76,.18);
  padding-bottom: 1px;
  white-space: nowrap;
}

.pub-link:hover{
  color: rgba(255,129,61,.98);
  border-bottom-color: rgba(255,129,61,.45);
}

/* SZŰRŐK */
.pub-filters{
  display: grid;
  grid-template-columns: 180px 180px 1fr;
  gap: 16px;
  margin: 26px 0 18px 0;
  align-items: end;
}

.pub-filter label{
  display: block;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(11,18,32,.62);
  margin-bottom: 6px;
}

.pub-filter select,
.pub-filter input{
  width: 100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,.12);
  padding: 0 12px;
  font-family: inherit;
  font-size: 14px;
  background: #ffffff;
  color: rgba(11,18,32,.90);
  outline: none;
}

.pub-filter select:focus,
.pub-filter input:focus{
  border-color: rgba(0,40,76,.28);
  box-shadow: 0 0 0 4px rgba(0,40,76,.08);
}

.pub-empty{
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px dashed rgba(11,18,32,.18);
  color: rgba(11,18,32,.70);
  background: rgba(255,255,255,.65);
}

/* RESPONSIVE */
@media (max-width: 1000px){
  .pub-hero-inner{ grid-template-columns: 1fr; }
  .pub-featured-grid,
  .pub-grid{ grid-template-columns: repeat(2, 1fr); }
  .pub-filters{ grid-template-columns: 1fr; }
}

@media (max-width: 650px){
  .pub-featured-grid,
  .pub-grid{ grid-template-columns: 1fr; }
}
