.blog-home {
    /* position: relative; */
}

.blog-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(100vh - 0px);
}

.blog-col {
    width: 100%;
    background: white;
    /* position: relative; */
    height: 100%;
    padding-top: 6rem;
}

.blog-col .blog-content-container .title {
    font-size: 3.6rem;
    font-family: "Deutschlander 2.0";
    line-height: 3rem;
    color: var(--dark-choclate);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.title-img {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.title-img .right img {
    width: 100%;
}

.title-img .left {
    width: 50%;
    flex: 1;
}

.title-img .right {
    width: 30%;
}

.category-name {
    font-family: "Manrope";
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: var(--dark-choclate);
    font-weight: 600;
    position: relative;
    padding-left: 13px;
}

.category-name::after {
    content: "";
    position: absolute;
    width: 8px;
    height: 1px;
    left: 0;
    background-color: var(--dark-choclate);
}

.blog-content-container .col {
    padding: 2rem;
}

.blog-content-container .col:nth-child(1) {
    background-color: white;
}

.posted-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-tag,
.posted-date {
    font-family: "Manrope";
    background-color: #ffffff60;
    border-radius: 10rem;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 6px;
}

.author-tag {
    padding: .2rem .7rem .2rem .2rem;
    font-size: 1.3rem;
}

.posted-date {
    padding: 0.3rem 1rem;
    font-size: 1.2rem;
    color: #333333;
    font-weight: 600;
}

.author-img {
    border-radius: 10rem;
    overflow: hidden;
}

.author-tag .author-img img {
    width: 2rem;
    height: 2rem;
    display: flex;
}

.author-tag .author-name span:first-child {
    color: #999999;
}

.author-tag .author-name span:last-child {
    color: #333333;
    font-weight: 600;
}

.blog-para-group {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-direction: column;
}

.blog-para-group p {
    font-family: "Manrope";
    color: var(--dark-choclate);
    font-size: 1.2rem;
    font-weight: lighter;
}

.blog-share-icons {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 2rem;
    padding-bottom: 6.5rem;
}

.blog-share-icons a {
    font-size: 1.8rem;
    color: var(--dark-choclate);
    display: flex;
}

.blogger-icon svg {
    height: 1.8rem;
    width: auto;
    color: var(--dark-choclate);
}

.blog-share-icons p {
    font-family: "Manrope";
    font-size: 1rem;
}

.btn-read {
    /* background: var(--dark-choclate); */
    color: var(--dark-choclate);
    /* padding: 5px 8px; */
    font-size: 1.8rem;
    letter-spacing: .6px;
    /* padding-top: 20px; */
}

.blog-para-group {
    display: block;
    display: -webkit-box;
    /* max-width: 100%; */
    /* height: 43px; */
    /* margin: 0 auto; */
    /* font-size: 14px; */
    /* line-height: 1; */
    -webkit-line-clamp: 12;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: .6rem;
}

.blog-pagination {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding-bottom: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.blog-pagination .page-number {
    border: 1px solid gray;
    color: gray;
    width: 26px;
    height: 26px;
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Manrope";
}

.blog-pagination .page-number.active,
.blog-pagination .page-number:hover {
    font-weight: 600;
    color: white;
    background: var(--dark-choclate);
    border: 2px solid var(--dark-choclate);
    cursor: pointer;
}