/*==========================================
  PET DIET BLOG
  STYLE.CSS
  PART 1 - GLOBAL + NAVBAR
===========================================*/

/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{

    background:#f4f7fb;
    color:#222;
    overflow-x:hidden;
    line-height:1.7;

}

/* Scrollbar */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:#2ecc71;
    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#27ae60;

}

/* Root Colors */

:root{

    --primary:#2ecc71;
    --secondary:#27ae60;
    --dark:#1e293b;
    --white:#fff;
    --light:#f8fafc;
    --gray:#64748b;
    --shadow:0 15px 35px rgba(0,0,0,.12);
    --radius:18px;
    --transition:.4s;

}

/* Container */

.container{

    width:90%;
    max-width:1200px;
    margin:auto;

}

/* Images */

img{

    width:100%;
    display:block;

}

/* Links */

a{

    text-decoration:none;

}

/* Lists */

ul{

    list-style:none;

}

/* Headings */

h1,h2,h3,h4{

    color:var(--dark);
    font-weight:700;

}

p{

    color:var(--gray);

}

/* Buttons */

.btn{

    display:inline-block;
    padding:14px 35px;
    background:linear-gradient(135deg,#2ecc71,#27ae60);
    color:#fff;
    border-radius:50px;
    transition:.4s;
    box-shadow:0 15px 30px rgba(46,204,113,.35);

}

.btn:hover{

    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(46,204,113,.45);

}


/*==========================================
        HEADER & NAVBAR
==========================================*/

.header{
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.navbar{
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 15px 30px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.12);
}

.logo{
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img{
    width: 55px;
    height: 55px;
    object-fit: cover;
    border-radius: 50%;
}
/* Logo Text */
.logo-text{
    font-size:24px;
    font-weight:800;
    letter-spacing:.5px;
    line-height:1;
    display:flex;
    align-items:center;
}

.logo-text .pets{
    color:#2ecc71;      /* Theme Green */
}

.logo-text .prey{
    color:#2d6a4f;      /* Dark Emerald Green */
}

.logo:hover .pets{
    color:#27ae60;
    transition:.3s ease;
}

.logo:hover .prey{
    color:#1b4332;
    transition:.3s ease;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    color:#333;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#2ecc71;
}

.menu-btn{
    display:none;
    font-size:24px;
    background:none;
    border:none;
    color:#333;
    cursor:pointer;
}
/*==========================================
        MODERN PREMIUM NAVBAR SEARCH
==========================================*/

.nav-search{
    display:flex;
    align-items:center;
    width:300px;
    height:48px;
    background:#fff;
    border:2px solid rgba(46,204,113,.15);
    border-radius:50px;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.nav-search:hover,
.nav-search:focus-within{
    border-color:#2ecc71;
    box-shadow:0 10px 30px rgba(46,204,113,.25);
}

.nav-search input{
    flex:1;
    height:100%;
    border:none;
    outline:none;
    background:transparent;
    padding:0 20px;
    font-size:15px;
    color:#333;
}

.nav-search input::placeholder{
    color:#999;
}

.nav-search button{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#2ecc71;
    color:#fff;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
    margin-right:3px;
}

.nav-search button:hover{
    background:#27ae60;
    transform:scale(1.08);
}

.nav-search button i{
    pointer-events:none;
}

@media(max-width:992px){
    .nav-search{
        display:none;
    }
}
/*==========================================
        HERO IMAGE SLIDER
==========================================*/

.hero{
    position:relative;
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.slider{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    opacity:0;
    transition:opacity 1.5s ease-in-out;
}

.slide.active{
    opacity:1;
}

.hero::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:800px;
    text-align:center;
    padding:20px;
}

.hero-content h1{
    font-size:60px;
    font-weight:800;
    color:#fff;
    margin-bottom:20px;
    line-height:1.2;
}

.hero-content p{
    font-size:20px;
    color:#fff;
    margin-bottom:35px;
}

.hero-content .btn{
    font-size:18px;
}
/*==========================================
        FEATURED BLOGS
==========================================*/

.featured{
    padding:100px 0;
}

.featured h2{
    text-align:center;
    font-size:38px;
    margin-bottom:60px;
    color:#222;
}

.blog-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

@media(max-width:992px){
    .blog-container{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .blog-container{
        grid-template-columns:1fr;
    }
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.blog-card img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
    border-top-left-radius:20px;
    border-top-right-radius:20px;
}

.blog-content{
    padding:25px;
}

.blog-content h3{
    margin-bottom:12px;
    font-size:24px;
    color:#222;
}

.blog-content p{
    margin-bottom:20px;
    color:#64748b;
    line-height:1.7;
}

.blog-content a{
    color:#2ecc71;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.blog-content a:hover{
    letter-spacing:1px;
}

@media(max-width:768px){

.blog-container{
    grid-template-columns:1fr;
}

.blog-card img{
    height:220px;
}

.blog-content{
    padding:22px;
}

.blog-content h3{
    font-size:22px;
}

}

/*==========================================
        WHY CHOOSE US
==========================================*/

.why-us{
    background:#fff;
    padding:100px 0;
}

.why-us h2{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.feature-box{
    background:#f8fafc;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-10px);
    background:#2ecc71;
}

.feature-box:hover h3,
.feature-box:hover p{
    color:#fff;
}

.feature-box h3{
    margin-bottom:15px;
}

/*==========================================
        ANIMATIONS
==========================================*/

@keyframes float{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(25px);
    }

    100%{
        transform:translateY(0px);
    }

}
/*==========================================
        BLOGS PAGE
==========================================*/

.blogs{
    padding:100px 0;
    background:#f8fafc;
}

.page-banner{
    padding:160px 20px 80px;
    text-align:center;
    background:linear-gradient(135deg,#2ecc71,#27ae60);
    color:#fff;
}

.page-banner h1{
    font-size:55px;
    color:#fff;
    margin-bottom:15px;
}

.page-banner p{
    color:#eef;
    font-size:18px;
}

/* =========================
        SEARCH BOX
========================= */

.search-box{
    width:100%;
    max-width:900px;
    margin:0 auto 70px;
    position:relative;
}

.search-box input{
    width:100%;
    height:75px;
    padding:0 90px 0 30px;
    border:2px solid transparent;
    outline:none;
    border-radius:60px;
    background:#fff;
    font-size:20px;
    color:#333;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    transition:all .35s ease;
}

.search-box input::placeholder{
    color:#94a3b8;
    font-size:18px;
}

.search-box input:focus{
    border-color:#2ecc71;
    transform:translateY(-3px);
    box-shadow:0 20px 50px rgba(46,204,113,.35);
}

.search-box button{
    position:absolute;
    top:50%;
    right:10px;
    transform:translateY(-50%);
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#2ecc71,#27ae60);
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.35s ease;
    box-shadow:0 8px 20px rgba(46,204,113,.35);
}

.search-box button:hover{
    transform:translateY(-50%) scale(1.1);
    box-shadow:0 12px 25px rgba(46,204,113,.5);
}

.search-box button i{
    pointer-events:none;
}

@media (max-width:768px){

    .search-box{
        max-width:100%;
    }

    .search-box input{
        height:65px;
        font-size:17px;
        padding:0 75px 0 20px;
    }

    .search-box button{
        width:50px;
        height:50px;
        font-size:18px;
    }

}

.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.blog-card:hover{
    transform:translateY(-10px) rotateX(5deg);
    box-shadow:0 30px 60px rgba(0,0,0,.15);
}

.blog-card img{
    height:220px;
    object-fit:cover;
}

.blog-content{
    padding:25px;
}

.blog-content span{
    color:#2ecc71;
    font-size:14px;
    font-weight:600;
}

.blog-content h3{
    margin:12px 0;
    font-size:24px;
}

.blog-content p{
    margin-bottom:20px;
}

/*==========================================
        ABOUT PAGE
==========================================*/

.about{
    padding:100px 0;
}

.about .container{
    display:flex;
    gap:60px;
    align-items:center;
    flex-wrap:wrap;
}

.about-image{
    flex:1;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.about-content{
    flex:1;
}

.about-content h2{
    font-size:42px;
    margin-bottom:20px;
}

.about-content p{
    margin-bottom:20px;
}

.mission{
    padding:80px 0;
    background:#f8fafc;
}

.mission .container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.card:hover{
    transform:translateY(-10px);
    background:#2ecc71;
}

.card:hover h3,
.card:hover p{
    color:#fff;
}

/*==========================================
        CONTACT PAGE
==========================================*/

.contact{
    padding:100px 0;
}

.contact .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
}

.contact-info h2{
    font-size:38px;
    margin-bottom:20px;
}

.contact-info p{
    margin-bottom:15px;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.10);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:none;
    outline:none;
    border-radius:12px;
    background:#f4f7fb;
    font-size:16px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    background:#fff;
    box-shadow:0 0 0 3px rgba(46,204,113,.25);
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    width:100%;
}
/*==========================================
            FOOTER
==========================================*/
.footer-box:last-child{
    grid-column:span 2;
}

.footer{
    background:#111827;
    color:#fff;
    padding:80px 0 20px;
    margin-top:80px;
}

.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.footer-box h3{
    color:#fff;
    margin-bottom:20px;
    font-size:22px;
}

.footer-box p{
    color:#cbd5e1;
    line-height:1.8;
}

.footer-box ul{
    list-style:none;
}

.footer-box ul li{
    margin:12px 0;
}

.footer-box ul li a{
    color:#cbd5e1;
    transition:.3s;
}

.footer-box ul li a:hover{
    color:#2ecc71;
    padding-left:8px;
}

.copyright{
    border-top:1px solid rgba(255,255,255,.1);
    margin-top:50px;
    padding-top:20px;
    text-align:center;
}

.copyright p{
    color:#cbd5e1;
}


/*newslater*/

.newsletter-form{
    display:flex;
    align-items:center;
    width:100%;
    margin-top:20px;
}

.newsletter-form input{
    flex:1;
    height:60px;
    padding:0 25px;
    border:none;
    outline:none;
    background:#fff;
    border-radius:50px 0 0 50px;
    font-size:16px;
}

.newsletter-form button{
    width:180px;
    height:60px;
    border:none;
    background:#2ecc71;
    color:#fff;
    font-size:17px;
    font-weight:600;
    border-radius:0 50px 50px 0;
    cursor:pointer;
}
/*==========================================
        SCROLL TO TOP BUTTON
==========================================*/

.top-btn{

    position:fixed;
    right:25px;
    bottom:25px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#2ecc71;
    color:#fff;

    font-size:22px;
    cursor:pointer;

    display:none;

    box-shadow:0 15px 35px rgba(0,0,0,.25);

    transition:.4s;

    z-index:999;

}

.top-btn:hover{

    transform:translateY(-8px) rotate(360deg);

}


/*==========================================
        FADE ANIMATION
==========================================*/

.blog-card,
.feature-box,
.card,
.contact-form{

    animation:fadeUp .8s ease;

}

@keyframes fadeUp{

    from{

        opacity:0;
        transform:translateY(40px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

/*==========================================
        RESPONSIVE
==========================================*/

@media (max-width:992px){

    .hero h1{
        font-size:45px;
    }

    .page-banner h1{
        font-size:42px;
    }

    .about .container{
        flex-direction:column;
    }

    .contact .container{
        grid-template-columns:1fr;
    }

}

@media (max-width:768px){

    .navbar{
        padding:15px 20px;
    }

    .menu-btn{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:90px;
        left:0;
        width:100%;
        background:#fff;
        display:none;
        flex-direction:column;
        text-align:center;
        padding:20px 0;
        border-radius:20px;
        box-shadow:0 15px 35px rgba(0,0,0,.15);
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links li{
        margin:15px 0;
    }

    .hero{
        padding-top:170px;
    }

    .hero h1{
        font-size:38px;
    }

    .hero p{
        font-size:17px;
    }

    .featured h2,
    .why-us h2{
        font-size:30px;
    }

    .page-banner{
        padding:140px 20px 60px;
    }

    .page-banner h1{
        font-size:35px;
    }

    .blog-grid{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

}

@media (max-width:480px){

    .container{
        width:94%;
    }

    .hero h1{
        font-size:30px;
    }

    .hero p{
        font-size:16px;
    }

    .btn{
        padding:12px 25px;
    }

    .logo span{
        display:none;
    }

    .blog-card img{
        height:200px;
    }

    .about-content h2{
        font-size:30px;
    }

    .contact-form{
        padding:25px;
    }

    .top-btn{
        width:45px;
        height:45px;
    }

}




/* ==========================/*=============================
    PROFESSIONAL BLOG PAGE
==============================*/

.blog-content{
    max-width:900px;
    margin:40px auto;
    background:#fff;
    padding:45px;
    border-radius:24px;
    box-shadow:0 20px 50px rgba(0,0,0,.10);
}

.blog-content h1{
    font-size:48px;
    line-height:1.2;
    margin-bottom:20px;
    color:#1f2937;
}

.blog-content h2{
    font-size:30px;
    margin:45px 0 20px;
    padding-left:15px;
    border-left:6px solid #2ecc71;
    color:#2d6a4f;
}

.blog-content h3{
    font-size:22px;
    margin:25px 0 15px;
    color:#222;
}

.blog-content p{
    font-size:18px;
    color:#555;
    line-height:1.9;
    margin-bottom:18px;
}

.blog-content img{
    width:100%;
    border-radius:18px;
    margin:30px 0;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
    transition:.4s;
}

.blog-content img:hover{
    transform:scale(1.02);
}

.blog-content ul,
.blog-content ol{
    margin:20px 0 20px 25px;
}

.blog-content li{
    margin:10px 0;
    line-height:1.8;
}

.blog-content table{
    width:100%;
    border-collapse:collapse;
    margin:35px 0;
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.10);
}

.blog-content th{
    background:#2ecc71;
    color:#fff;
    padding:16px;
}

.blog-content td{
    padding:16px;
    border-bottom:1px solid #eee;
}

.blog-content tr:nth-child(even){
    background:#f8fafc;
}

.blog-content tr:hover{
    background:#ecfff3;
}

.alert-box{
    margin:30px 0;
    padding:25px;
    background:#f0fff4;
    border-left:6px solid #2ecc71;
    border-radius:15px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:25px;
    margin:35px 0;
}

.feature-box{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.feature-box:hover{
    transform:translateY(-10px);
    background:#2ecc71;
}

.feature-box:hover h3,
.feature-box:hover p{
    color:#fff;
}

.blog-navigation{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.blog-navigation .btn{
    background:#2ecc71;
    color:#fff;
    padding:14px 28px;
    border-radius:40px;
}

.blog-navigation .btn:hover{
    background:#27ae60;
}

@media(max-width:768px){

.blog-content{
    padding:25px;
}

.blog-content h1{
    font-size:34px;
}

.blog-content h2{
    font-size:26px;
}

.blog-navigation{
    flex-direction:column;
}

.blog-navigation .btn{
    text-align:center;
}

}
/*==========================================
      PREMIUM BLOG HERO SECTION
==========================================*/

.article-hero{
    position:relative;
    width:92%;
    max-width:1250px;
    height:620px;
    margin:140px auto 70px;
    overflow:hidden;
    border-radius:30px;
    box-shadow:0 25px 60px rgba(0,0,0,.18);
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
}

.hero-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transition:transform .6s ease;
    z-index:1;
}

.article-hero:hover .hero-image{
    transform:scale(1.05);
}

/* Light overlay so image stays visible */
.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.25);
    z-index:2;
}

.article-hero .hero-content{
    position:relative;
    z-index:3;
    width:100%;
    max-width:900px;
    padding:40px;
    text-align:center;
}

.category-badge{
    display:inline-block;
    padding:10px 26px;
    background:#2ecc71;
    color:#fff;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(46,204,113,.35);
}

.article-hero .hero-content h1{
    font-size:72px;
    font-weight:800;
    line-height:1.15;
    color:#222;
    max-width:900px;
    margin:0 auto 25px;
    text-wrap:balance;
}

.article-hero .hero-content p{
    font-size:22px;
    line-height:1.8;
    color:#444;
    max-width:760px;
    margin:0 auto;
}

.article-meta{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
}

.article-meta span{
    background:#fff;
    color:#222;
    padding:10px 18px;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 8px 20px rgba(0,0,0,.10);
}

.article-wrapper{
    margin-top:-30px;
    position:relative;
    z-index:10;
}

.article-image{
    margin-bottom:40px;
}

.featured-image{
    width:100%;
    border-radius:22px;
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.tip-box{
    background:#ecfff4;
    border-left:6px solid #2ecc71;
    padding:25px;
    border-radius:16px;
    margin:35px 0;
}

.warning-box{
    background:#fff5f5;
    border-left:6px solid #e74c3c;
    padding:25px;
    border-radius:16px;
    margin:35px 0;
}

.related-posts{
    margin-top:70px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.related-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
    transition:.35s;
}

.related-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Responsive */

@media(max-width:992px){

.article-hero{
    height:520px;
}

.article-hero .hero-content h1{
    font-size:52px;
}

.article-hero .hero-content p{
    font-size:18px;
}

}

@media(max-width:768px){

.article-hero{
    height:470px;
}

.article-hero .hero-content{
    padding:25px;
}

.article-hero .hero-content h1{
    font-size:40px;
}

.article-hero .hero-content p{
    font-size:16px;
}

.category-badge{
    font-size:14px;
}

}
.related-card:hover{
    transform:translateY(-10px);
}

.related-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.related-card h3{
    padding:20px;
}

.related-card .btn{
    margin:0 20px 20px;
}

/*==============================
        MOBILE
==============================*/

@media(max-width:768px){

.article-hero{
    width:95%;
    height:500px;
    margin:120px auto 50px;
    border-radius:25px;
}

.hero-overlay{
    background:linear-gradient(
        rgba(255,255,255,.55),
        rgba(255,255,255,.75)
    );
}

.article-hero .hero-content{
    width:100%;
    padding:30px;
    text-align:center;
}

.article-hero .hero-content h1{
    font-size:34px;
}

.article-hero .hero-content p{
    font-size:16px;
    line-height:1.7;
}

.article-meta{
    justify-content:center;
    gap:10px;
}

.article-meta span{
    font-size:13px;
    padding:8px 14px;
}

.category-badge{
    font-size:13px;
    padding:8px 18px;
}

}







/* ===== Force Logo Colors ===== */

.logo .logo-text{
    font-size:24px !important;
    font-weight:800 !important;
    letter-spacing:.5px;
}

.logo .logo-text .pets{
    color:#16a34a !important;
}

.logo .logo-text .prey{
    color:#f97316 !important;
}

.logo .logo-text span{
    font-weight:800 !important;
}


