﻿.blog-detail-area {
    display: flex;
    flex-direction: column;
    row-gap: 60px;
}

.blog-title-and-image {
    display: flex;
    flex-direction: column;
    row-gap: 46px;
}

.blog-image, .blog-image img {
    aspect-ratio: 2/.8;
    object-fit: cover;
}

.blog-description-and-share {
    display: flex;
    flex-direction: column;
    row-gap: 28px;
}

.blog-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 52px;
    line-height: 68px;
    color: #292838;
}

.blog-description {
    font-family: Montserrat;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #3A394F;
}

    .blog-description * {
        font-size: 18px !important;
        line-height: 28px;
    }

.blog-description p {
    margin: 0;
}

.blog-share {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.blog-share-title {
    font-family: Montserrat;
    font-weight: 600;
    font-size: 18px;
    line-height: 28px;
    background-image: linear-gradient(90deg, #ED7512 0%, #F09D09 100.01%);
    color: transparent;
    background-clip: text;
}

.blog-share ul {
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    list-style: none;
    column-gap: 42px;
}

    .blog-share ul li a {
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #A4A4AE;
        text-decoration: none;
        transition: .4s;
        cursor: pointer;
    }

        .blog-share ul li a.instagram:hover {
            color: #fd08ad;
            transition: .4s;
        }

        .blog-share ul li a.whatsapp:hover {
            color: #25D366;
            transition: .4s;
        }

        .blog-share ul li a.linkedin:hover {
            color: #0a66c2;
            transition: .4s;
        }

        .blog-share ul li a.facebook:hover {
            color: #1f7bf2;
            transition: .4s;
        }


.notifier {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgb(239 141 13);
    color: rgb(255, 255, 255);
    padding: 10px 20px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 8px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    font-family: sans-serif;
    z-index: 1;
}

@media only screen and (max-width: 1399px)
{
    .blog-title {
        font-family: Montserrat;
        font-weight: 600;
        font-size: 32px;
        line-height: 46px;
        color: #292838;
    }

    .blog-description {
        font-size: 16px;
        line-height: 26px;
    }

        .blog-description * {
            font-size: 16px !important;
            line-height: 26px;
        }
}

@media only screen and (max-width: 991px)
{
    .blog-title {
        font-size: 24px;
        line-height: 36px;
    }

    .blog-description {
        font-size: 15px;
        line-height: 25px;
    }

        .blog-description * {
            font-size: 15px !important;
            line-height: 25px;
        }
}

@media only screen and (max-width: 575px)
{
    .blog-title {
        font-size: 20px;
        line-height: 32px;
    }

    .blog-share ul {
        column-gap: 24px;
    }

        .blog-share ul li a {
            width: 20px;
            height: 20px;
            font-size: 20px;
        }
}