/* ===== BLOG ARTICLE LAYOUT ===== */

.blog-article-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 140px 20px 80px 20px;
}

/* ===== TITLE ===== */

.blog-title {
    font-family: "League Spartan";
    font-size: 56px;
    line-height: 1.15;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
    color: black;
}


/* ===== META ===== */

.blog-meta {
    text-align: center;
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 40px;
}


/* ===== EXCERPT ===== */

.blog-excerpt {
    font-family: "Public Sans";
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 50px;
}


/* ===== CONTENT ===== */

.blog-content {
    font-family: "Public Sans";
    font-size: 18px;
    line-height: 1.75;
    color: #222;
}


/* paragraphs */

.blog-content p {
    margin-bottom: 18px;
}


/* headings */

.blog-content h2 {
    font-family: "League Spartan";
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 18px;
}

.blog-content h3 {
    font-family: "League Spartan";
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 14px;
}

.blog-content h4 {
    font-family: "League Spartan";
    font-size: 22px;
    margin-top: 30px;
}


/* lists */

.blog-content ul {
    margin: 20px 0 20px 20px;
}

.blog-content li {
    margin-bottom: 8px;
}


/* images */

.blog-content img {
    width: 100%;
    border-radius: 10px;
    margin: 30px 0;
}


/* tables */

.blog-content table {
    width: 100%;
    margin: 30px 0;
}


/* links */

.blog-content a {
    color: #004AAD;
    text-decoration: underline;
}

.blog-content a:hover {
    color: #00c2a6;
}

.blog-signature {
    margin-top: 80px;
    text-align: center;
}

.signature-logo {
    width: 180px;
    margin-bottom: 20px;
}

.signature-text {
    font-size: 16px;
    color: #000;
}

/* ================= SIGNATURE ================= */

.blog-signature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 10px;
    margin-top: 80px;
}

.signature-bug {
    width: 50px;
}

.signature-title {
    font-weight: 700;
    font-size: 22px;
}

.signature-subtitle {
    font-size: 18px;
    color: #555;
}

/* ================= OTHER ARTICLES ================= */

.other-articles {
    background-color: #f6fbf9;
    padding-top: 40px;
    padding-bottom: 120px;
}

.other-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #000;
}

/* grid */

.blog-article-grid {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

    margin-bottom: 20px;
}

/* card */

.blog-article-card {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-decoration: none;
    color: black;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: all .25s ease;    
}

.blog-article-card:hover {
    transform: translateY(-8px);
}

.blog-article-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.blog-article-date {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.blog-article-card p {
    font-size: 18px;
    color: #555;
}

.blog-article-card:hover {
    transform: translateY(-8px);
    color: #128c6a;
}


/* ================= BUG ================= */
    
.blog-article-bug {
    position: absolute;
    width: 55px;
    height: 55px;
    background: #bfe6db;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.blog-article-bug img {
    width: 32px;
    transition: all 0.4s ease;
}

.bug-top-left    { top: -22px; left: 20px; }
.bug-top-right   { top: -22px; right: 20px; }
.bug-bottom-left { bottom: -22px; left: 20px; }
.bug-bottom-right{ bottom: -22px; right: 20px; }

.blog-article-card:hover .bug-top-left {
    transform: translate(-10px, -10px) scale(1.15);
}

.blog-article-card:hover .bug-top-right {
    transform: translate(10px, -10px) scale(1.15);
}

.blog-article-card:hover .bug-bottom-left {
    transform: translate(-10px, 10px) scale(1.15);
}

.blog-article-card:hover .bug-bottom-right {
    transform: translate(10px, 10px) scale(1.15);
}

.blog-article-card:hover .blog-article-bug {
    box-shadow: 0 20px 40px rgba(18,140,106,0.25);
}

.blog-article-card:hover .blog-article-bug img {
    transform: rotate(10deg) scale(1.1);
}

/* ================= VERY LARGE SCREENS ================= */

@media screen and (min-width: 1800px) {

    .blog-article-container {
        max-width: 1100px;
    }
    
    .blog-title {
        font-size: 64px;
    }
    
    .blog-excerpt {
        font-size: 24px;
    }
    
    .blog-content {
        font-size: 20px;
    }
    
    .blog-content h2 {
        font-size: 40px;
    }
    
    .blog-content h3 {
        font-size: 30px;
    }
    
    .blog-content h4 {
        font-size: 24px;
    }
    
    .blog-article-grid {
        max-width: 1500px;
        gap: 50px;
    }
    
    }
    
    
    /* ================= LAPTOP ================= */
    
    @media screen and (max-width: 1450px) {
    
    .blog-article-container {
        max-width: 900px;
    }
    
    .blog-title {
        font-size: 50px;
    }
    
    .blog-excerpt {
        font-size: 20px;
    }
    
    .blog-content {
        font-size: 17px;
    }
    
    .blog-content h2 {
        font-size: 32px;
    }
    
    .blog-content h3 {
        font-size: 26px;
    }
    
    .blog-article-grid {
        max-width: 1100px;
    }
    
    }
    
    
    /* ================= SMALL LAPTOP ================= */
    
    @media screen and (max-width: 1220px) {
    
    .blog-title {
        font-size: 44px;
    }
    
    .blog-excerpt {
        font-size: 19px;
    }
    
    .blog-content {
        font-size: 17px;
    }
    
    .blog-content h2 {
        font-size: 30px;
    }
    
    .blog-content h3 {
        font-size: 24px;
    }
    
    .blog-article-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .other-title {
        font-size: 28px;
    }
    
    }
    
    
    /* ================= TABLET ================= */
    
    @media screen and (max-width: 1030px) {
    
    .blog-article-container {
        padding: 120px 30px 80px 30px;
    }
    
    .blog-title {
        font-size: 38px;
    }
    
    .blog-meta {
        font-size: 15px;
    }
    
    .blog-excerpt {
        font-size: 18px;
    }
    
    .blog-content {
        font-size: 16px;
    }
    
    .blog-content h2 {
        font-size: 28px;
    }
    
    .blog-content h3 {
        font-size: 22px;
    }
    
    .blog-content h4 {
        font-size: 20px;
    }
    
    .blog-article-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }
    
    .blog-article-card {
        padding: 26px;
    }
    
    }
    
    
    /* ================= MOBILE ================= */
    
    @media screen and (max-width: 768px) {
    
    .blog-article-container {
        padding: 100px 20px 60px 20px;
    }
    
    .blog-title {
        font-size: 30px;
    }
    
    .blog-meta {
        font-size: 14px;
    }
    
    .blog-excerpt {
        font-size: 17px;
    }
    
    .blog-content {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .blog-content h2 {
        font-size: 24px;
        margin-top: 40px;
    }
    
    .blog-content h3 {
        font-size: 20px;
    }
    
    .blog-content h4 {
        font-size: 18px;
    }
    
    .blog-content img {
        margin: 20px 0;
    }
    
    .blog-article-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-article-card {
        padding: 22px;
    }
    
    .blog-article-card h4 {
        font-size: 20px;
    }
    
    .blog-article-card p {
        font-size: 16px;
    }
    
    .blog-article-bug {
        width: 45px;
        height: 45px;
    }
    
    .blog-article-bug img {
        width: 26px;
    }
    
    .signature-bug {
        width: 40px;
    }
    
    .signature-title {
        font-size: 20px;
    }
    
    .signature-subtitle {
        font-size: 16px;
    }
    
    }