main {
    /* background-color: red; */
}

.wa-blog-banner--container {
    border-radius: 2.5rem 2.5rem 0 0;
    overflow: clip;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-height: 39rem;
}

.wa-blog-banner--img {
    width: 100%;
    position: relative;
}

.wa-blog-banner--img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.wa-blog-banner--img img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

.wa-blog-banner--content {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    z-index: 3;
}

.wa-blog-banner--content p,
.wa-blog-banner--content span {
    color: var(--text-secondary-color);
    text-align: center;
}

.wa-blog-banner--content .wa-blog-banner--title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 125%;
}

.wa-blog-banner--content .wa-blog-banner--subtitle {
    font-size: 1.125rem;
    padding: 0.75rem 0;
    font-weight: 300;
}

.wa-blog-list--container {
    width: 100%;
    max-width: 78rem;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    top: -6.25rem;
    z-index: 2;
}
.wa-blog-post--item * {
    text-decoration: none;
}

.wa-blog-post--item:hover .wa-post--title {
    text-decoration: underline;
}

.wa-blog-post--card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wa-blog-post--card__img {
    width: 100%;
    overflow: clip;
    aspect-ratio: 1.6;
    max-height: 15rem;
    border-radius: 1rem;
    border: 1px solid #E3E3E3;
}

.wa-blog-post--item__newest {
    margin-bottom: 4rem;
}

.wa-blog-post--item__newest .wa-blog-post--card__img {
    border-radius: 1.5rem;
    max-height: 26.875rem;
}

.wa-blog-post--card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wa-blog-post--card__content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.wa-post--date {
    font-size: 0.875rem;
    font-weight: 500;
    color: #00527c;
}

.wa-blog-post--card__content .wa-post--title {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.wa-blog-post--card__content .wa-post--description {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #616161;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--line-clamp);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

.wa-post--tag {
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    line-height: 1rem;
}

.wa-post--tag.marketing {
    background-color: #e0f0ff;
    color: #00527c;
}

.wa-post--tag.growth {
    background-color: #cdfee1;
    color: #0c5132;
}

.wa-post--tag.tips {
    background-color: #ffef9d;
    color: #4f4700;
}

.wa-blog-list--wrap {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
    gap: 2rem;
    row-gap: 3rem;
}

.wa-pagination--container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 0.75rem 1.5rem 1rem;
    border-top: 1px solid #e3e3e3;
    margin-top: 4rem;
}

.wa-pagination--container a {
    text-decoration: none;
}

.wa-pagination--btn {
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
    color: #00527c;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.625rem;
}

.wa-pagination--btn.disabled span {
    color: #b5b5b5;
}

.wa-pagination--btn.disabled path {
    fill: #b5b5b5;
}

.wa-pagination--list {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.375rem;
}

.wa-pagination--list .page-numbers {
    font-size: 0.875rem;
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    line-height: 2.5rem;
    text-align: center;
    border-radius: 50%;
}

.wa-pagination--list .page-numbers.current,
.wa-pagination--list .page-numbers:hover {
    background-color: #f3f3f3;
}

.wa-blog-newsletter--container {
    padding: 4rem 1rem;
    background-color: #f7f7f7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wa-blog-newsletter--wrap {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 78rem;
}

.wa-blog-newsletter--content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.wa-blog-newsletter--content p {
    text-align: center;
}

.wa-blog-newsletter--content .wa-blog-newsletter--title {
    font-size: 2.25rem;
    line-height: 2.75rem;
    font-weight: 600;
}

.wa-blog-newsletter--content .wa-blog-newsletter--subtitle {
    font-size: 1.125rem;
    line-height: 1.5rem;
    color: #616161;
    font-weight: 400;
}

.wa-blog-newsletter--wrap .action--btn span {
    color: var(--text-secondary-color);
}

.wa-blog-newsletter--wrap .action--btn:hover {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    outline: 1px solid var(--action-border-color);
    outline-offset: 0px;
}

.wa-blog-page--container {
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    max-width: 78rem;
}

.wa-blog-page--header {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 4rem 0;
}

.wa-blog-header--content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wa-post--title {
    font-size: 3rem;
    line-height: 3.75rem;
    font-weight: 600;
}

.wa-post--description {
    font-size: 1.25rem;
    line-height: 1.875rem;
    color: #616161;
    font-weight: 400;
}

.wa-blog-feature--img {
    width: 100%;
    max-height: 32.25rem;
    overflow: clip;
    border-radius: 1rem;
    aspect-ratio: 2.35;
}

.wa-blog-feature--img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.wa-blog-page--main {
    display: flex;
    flex-direction: row;
    gap: 6rem;
}

.wa-blog-page--main {
    padding-bottom: 4rem;
}

.wa-weekly--newsletter {
    padding: 2rem;
    border-top: 4px solid #a8d8ff;
    border-radius: 0 0 1rem 1rem;
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 24rem;
    flex-shrink: 0;
}

.wa-weekly--title{
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.wa-weekly--subtitle{
    line-height: 1.5rem;
}

.wa-weekly-email-subscribe--container{
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wa-weekly-email-input--field label{
    display: block;
    margin-bottom: 0.375rem;
}

.wa-weekly-email-input--field input{
    border: 1px solid #E3E3E3;
    border-radius: 0.5rem;
    padding: 0.625rem 0.875rem;
    width: 100%;
}

.wa-weekly-email-subscribe--container .action--btn{
    width: 100%;
}

.wa-weekly-email-subscribe--container .action--btn button{
    width: 100%;
}

.wa-weekly-email-subscribe--container .action--btn button span{
    color: var(--text-secondary-color);
}

.wa-weekly-email-subscribe--container:hover .action--btn {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    outline: 1px solid var(--action-border-color);
    outline-offset: 0px;
}

.wa-related-posts--container{
    display: flex;
    flex-direction: row;
    gap: 4rem;
    padding-bottom: 4rem;
}

.wa-related-posts--left{
    display: flex;
    flex-direction: column;
    gap: 2rem;
    gap: 1.25rem;
}

.wa-related-posts--title{
    font-size: 2.25rem;
    line-height: 2.75rem;
    font-weight: 600;
}

.wa-related-posts--subtitle{
    font-size: 1.125rem;
    color: #616161;
    font-weight: 400;
}

.view-all-post--btn{
    background: var(--gradient-background);
}

.view-all-post--btn span{
    color: var(--text-secondary-color);
}

.wa-related-posts--right{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 50%;
    flex-shrink: 0;
}

.wa-blog-post--card .wa-post--footer{
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
}

@media (max-width: 64rem) {
    .wa-blog-page--main{
        flex-direction: column;
        gap: 3rem;
    }
    .wa-weekly--newsletter{
        width: 100%;
        max-width: unset;
    }
    
}

@media (max-width: 48rem) {
    .wa-blog-banner--container {
        max-height: unset;
        padding-top: 2.5rem;
        padding-bottom: 8.5rem;
        padding: 2.5rem 0 8.5rem;
        max-height: 38rem;
    }

    .wa-blog-banner--img img {
        height: 100%;
        width: auto;
        object-fit: cover;
        object-position: center;
    }

    .wa-blog-banner--content {
        padding: 0 1rem;
    }

    .wa-blog-banner--content .wa-blog-banner--title {
        font-size: 2.25rem;
        font-weight: 500;
    }

    .wa-blog-banner--content p,
    .wa-blog-banner--content span {
        font-size: 0.875rem;
    }

    

    .wa-related-posts--container{
        flex-direction: column;
        gap: 2rem;
    }

    .wa-related-posts--right{
        width: 100%;
        grid-template-columns: repeat(auto-fill, minmax(21rem, 1fr));
    }
    
    .wa-post--title{
        font-size: 2.25rem;
    }

    .wa-post--description{
        font-size: 1.125rem;
    }
    .wa-blog-post--item__newest .wa-blog-post--card__img {
        max-height: 15rem;
    }

    .wa-blog-feature--img{
        max-height: 15rem;
    }
}

@media (max-width: 490px) {
    
}
