.blogs {
    padding: 50px;
}

.title-segtion {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.title-segtion h2 {
    font-family: "bold";
    font-size: 13px;
    color: #111827;
    flex-grow: 1;
    white-space: nowrap;
}

.title-segtion hr {
    width: 100%;
    height: 1px;
    opacity: 0.7;
}

.segtion>:last-child {
    display: flex;
    justify-content: space-evenly;
    gap: 20px;
    margin-top: 20px;
}

.category-card {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    margin-top: 20px;
}

.category-card img {
    width: 96px;
    height: 96px;
    border-radius: 10px;
}

.category-card span {
    opacity: 0.5;
    color: #000;
    font-size: 13px;
}

.category-card h3 {
    font-size: 14px;
    color: #111827;
}

.blog-category {
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
}

.blog-category>div>:last-child {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
}


.filter {
    display: flex;
    justify-content: space-between;
    padding: 20px 50px;
    align-items: stretch;
    margin-top: 20px;
}

.filter select {
    border: 1px #E5E7EB solid;
    border-radius: 10px;
    padding: 5px 10px;
    background-color: transparent;
    margin-left: 15px;
    color: #00000080;
}

.filter input[type="text"] {
    border: none;
    width: 100%;
}

.filter form {
    border: 1px #E5E7EB solid;
    border-radius: 10px;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.labels {
    padding: 0 50px;
}

.labels button {
    border: 1px #E5E7EB solid;
    background-color: transparent;
    color: #111827;
    font-size: 12px;
    border-radius: 10px;
    padding: 2px 5px;
    margin-right: 5px;
}

.all-blog {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 20px;
}


@media screen and (max-width:768px) {
    .blogs {
        padding: 50px 20px;
    }

    .segtion>:last-child {
        flex-wrap: wrap;
    }

    .segtion>:last-child>a {
        width: 100%;
    }

    .signal-card h3 {
        margin-top: 50px;
    }

    .title-segtion h2 {
        font-size: 15px;
    }

    .blog-category {
        flex-wrap: wrap;
    }

    .blog-category>div {
        width: 100%;
        margin-top: 15px;
    }

    .filter {
        flex-wrap: wrap;
        padding: 0;
        margin-top: 20px;
    }

    .filter>div {
        width: 100%;
    }

    .filter>:first-child {
        display: flex;
        align-items: center;
        justify-content: space-between;

    }

    .filter select {
        width: 48%;
        margin: 0;
    }

    .filter>:last-child {
        margin-top: 10px;
    }

    .labels {
        padding: 20px;
    }
}

.show-landing-blog {
    text-align: center;
    margin-top: 20px;
}

.show-landing-blog>span {
    color: #6B7280;
}

.show-landing-blog>h1 {
    font-family: "extra_bold";
    font-size: 24px;
}

.category-span {
    font-family: "medium";
    background-color: #F3F4F6;
    color: #4B5563;
    padding: 5px 10px;
    font-size: 13px;
    margin: 0 5px;
    border-radius: 5px;
}

.show-landing-blog>img {
    width: 80%;
    border-radius: 20px;
    max-height: 400px;
    margin-top: 50px;
}

.content-blog {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 50px;
    padding: 50px 100px;
}

.main-blog-text {
    width: 75%;
}

.side-blog {
    width: 20%;
}

.side-blog>div {
    border: 1px #E5E7EB solid;
    padding: 20px;
    border-radius: 15px;
    margin-top: 20px;
}

.side-blog h3 {
    font-family: "bold";
    font-size: 14px;
}

.writer-blog>div {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.writer-blog img {
    width: 40px;
}

.writer-blog h4 {
    font-size: 13px;
    font-family: "medium";
}

.writer-blog p {
    font-family: "regular";
    font-size: 12px;
    color: #9CA3AF;
}

.realated-blog>div {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 20px;
}

.realated-blog img {
    width: 100%;
}

.similar-blogs-card {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 10px;
    align-items: start;
}

.similar-blogs-card img {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    max-width: 30%;
}

.similar-blogs-card>span {
    width: 70%;
}

.similar-blogs-card>span>span {
    color: #9CA3AF;
    font-size: 12px;
}

.similar-blogs-card h4 {
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.share>a {
    margin-top: 20px;
    display: block;
}

@media screen and (max-width:768px) {
    .show-landing-blog>img {
        margin-top: 20px;
    }

    .content-blog {
        padding: 20px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .content-blog>div {
        width: 100%;
    }
}