#heroSection {
    background: linear-gradient(90deg, #ffe4e6, #ffedd5);
}

#heroSection h1 {
    text-align: center;
}

#heroSection h1 span {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    background-clip: text;
}

#heroSection p {
    color: var(--grey);
    text-align: center;
    text-wrap: balance;
}

#heroSection figure {
    margin-top: 30px;
    display: flex;
    margin-bottom: -5rem;
}

#heroSection figure img {
    object-fit: contain;
    max-height: 275px;
}


/* Blog Section */
#blog h2 {
    margin-bottom: 30px;
}

#blog #tag-filters {
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

#blog #tag-filters span {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    color: var(--grey);
}

#blog #tag-filters label {
    color: var(--grey);
    border-radius: var(--low-radius);
    border: var(--border);
    font-weight: 500;
    font-size: 14px;
    background: var(--white);
    transition: all 0.3s ease;
    cursor: pointer;
}

#blog #tag-filters label.is-active {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    color: var(--white);
    border-color: var(--orange);
}

#blog #tag-filters input {
    display: none;
}

#blog #filtered-posts {
    display: flex;
    flex-direction: column;
    gap: 30px;
    min-height: 2950px;
}

#blog article {
    border: var(--border);
    box-shadow: var(--small-shadow);
    border-radius: var(--medium-radius);
    overflow: hidden;
}

#blog article figure {
    display: flex;
    height: 200px;
}

#blog article > div {
    padding: 20px;
}

#blog article .post-tags li {
    padding: 5px 10px;
    border-radius: var(--hight-radius);
    width: max-content;
    font-size: 12px;
    font-weight: 600;
}

#blog article h3 {
    margin: 15px 0;
}

#blog article .content {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

#blog .details {
    margin: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

article .details span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--grey);
    font-size: 12px;
}

#blog article a {
    width: 100%;
    border-radius: var(--low-radius);
    text-align: center;
}

#blog .pagination {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

#blog .pagination button {
    color: var(--grey);
    border: 1px solid var(--orange);
    padding: 10px;
    border-radius: var(--low-radius);
    font-weight: 600;
    cursor: pointer;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
}

#blog .pagination button:hover,
#blog .pagination button.active {
    background: linear-gradient(90deg, var(--orange), var(--pink));
    color: var(--white);
}


    /* Pad Version */
    @media screen and (min-width: 768px) {
        /* Hero Section */
        #heroSection .section-container {
            display: flex;
            align-items: center;
            gap: 40px;
            justify-content: space-between;
        }

        #heroSection .section-container .content {
            width: 70%;
            align-items: flex-start;
        }

        #heroSection h1,
        #heroSection p {
            text-align: left;
        }

        #heroSection figure {
            width: 40%;
            margin-top: 0;
            margin-bottom: -6.5rem;
        }

        #heroSection figure img {
            max-height: 335px;
        }


        /* Blog Section */
        #blog h2,
        #blog #tag-filters {
            margin-bottom: 40px;
        }

        #blog #tag-filters span,
        #blog #tag-filters label {
            font-size: 15px;
        }

        #blog #filtered-posts {
            flex-direction: row;
            flex-wrap: wrap;
            min-height: unset;
        }

        #blog article {
            width: calc(50% - 15px);
        }

        #blog article figure {
            height: 37%;
        }

        #blog article > div {
            display: flex;
            flex-direction: column;
            height: 63%;
        }

        #blog article h3 {
            margin: 20px 0;
        }

        #blog .details {
            margin: 25px 0;
        }

        #blog article .post-tags li,
        article .details span {
            font-size: 13px;
        }

        #blog article a {
            margin-top: auto;
        }

        #blog article:first-of-type {
            width: 100%;
            display: flex;
            margin-bottom: 10px;
            box-shadow: var(--medium-shadow);
        }

        #blog article:first-of-type figure {
            width: 40%;
            height: auto;
        }

        #blog article:first-of-type > div {
            width: 60%;
            height: auto;
        }

        #blog article:first-of-type a {
            background: linear-gradient(90deg, var(--orange), var(--pink));
            color: var(--white);
            border-color: var(--orange);
        }

        #blog article:first-of-type a:hover {
            background: var(--white);
            color: var(--grey);
        }

        #blog .pagination {
            margin-top: 10px;
        }
    }


        /* Desktop Version */
        @media screen and (min-width: 992px) {
            /* Hero Section*/
            #heroSection .section-container {
                gap: 60px;
            }

            #heroSection figure {
                margin-bottom: -7.5rem;
            }

            #heroSection figure img {
                max-height: 375px;
            }


            /* Blog Section */
            #blog h2,
            #blog #tag-filters {
                margin-bottom: 50px;
            }

            #blog #tag-filters span,
            #blog #tag-filters label {
                font-size: 16px;
            }

            #blog article .post-tags li,
            article .details span {
                font-size: 14px;
            }

            #blog article {
                width: calc(33% - 16px);
            }

            #blog article figure {
                height: 40%;
            }

            #blog article > div {
                height: 60%;
            }

            #blog article:first-of-type {
                margin-bottom: 20px;
            }

            #blog article:first-of-type figure {
                width: 50%;
                max-height: 300px;
            }

            #blog article:first-of-type > div {
                padding: 30px;
                width: 50%;
            }

            #blog article:first-of-type .details {
                justify-content: flex-start;
            }

            #blog article:first-of-type a {
                width: max-content;
            }

            #blog .pagination {
                margin-top: 20px;
            }
        }