.others {
    color: #000;
}

.head {
    font-size: 20px;
    font-weight: 500;
}

.section {
    margin-top: 10px;
    margin-bottom: 40px;
}

.submit_button {
    background: var(--gradient);
    border: none;
    outline: none;
    cursor: pointer;
    padding: 10px 40px;
    border-radius: 3px;
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.article_item {
    margin: 20px 0;
    height: 150px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.article_image {
    height: 150px;
    width: 150px;
    background: url("https://www.celebrityschool.in/blogs/wp-content/uploads/2022/02/screenshot-www.bebeautiful.in-2022.02.09-12_32_18.png")
        no-repeat center center/cover;
}

.article_content {
    width: calc(100% - 160px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article_head {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3rem;
}
.article_p {
    font-size: 13px;
    line-height: 1.1rem;
    margin: 10px 0;
}
.other_info {
    font-size: 12px;
    display: flex;
    color: #eee;
    font-weight: 600;
}
.other_info span {
    margin: 0 10px;
}

.article_title {
    margin: 20px 0;
    font-size: 14px;
    color: #fff;
    line-height: 1.2rem;
    cursor: pointer;
    font-weight: 600;
}
.article_title:hover {
    text-decoration: underline;
}

.tags {
    margin: 10px 0;
}

.tag {
    display: inline-block;
    font-size: 12px;
    /* background: var(--secondary-color-light); */
    background: #ccc;
    padding: 5px 15px;
    border-radius: 5px;
    margin: 0px 5px 5px 0;
    cursor: pointer;
    /* color: #fff; */
    color: #000;
    border: none;
}
.tag_form {
    margin-top: 40px;
}

.categories {
    padding-top: 20px;
}

.category {
    /* background: var(--secondary-color-light); */
    background: #ccc;
    display: flex;
    align-items: center;
    padding: 15px 10px;
    font-size: 14px;
    border: none;
    /* border-top: 1px solid var(--secondary-color); */
    border-top: 1px solid #aaa;
    width: 100%;
    /* color: #fff; */
    color: #000;
    font-weight: 500;
    cursor: pointer;
}

.number {
    margin-left: 10px;
    background: #ececec;
    color: #333;
    font-weight: 700;
    font-size: 12px;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    /* padding: 5px; */
}
.category:first-child {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.category:last-child {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}
