a {
    text-decoration: none;
    color: #000;
}

a:hover {
    text-decoration: none;
    color: #f1a31a;
}

p {
    margin: unset;
}

.cursor-pointer {
    cursor: pointer;
}

body {
    font-family: Inter, system-ui, sans-serif;
    font-feature-settings: normal;
    font-variation-settings: normal;
    color: hsl(223, 32%, 22%);
    tab-size: 4;
    background-color: rgb(254 254 254 / 65%);
    height: 100%;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

/* post list *************************************************************************************************************************************************** */

.container-fixed {
    margin-inline-start: auto;
    margin-inline-end: auto;
    padding-inline-start: 1.875rem;
    padding-inline-end: 1.875rem;
    max-width: 1280px;
}

.post_list .card {
    border: none;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.post_list h1 {
    position: relative;
    font-weight: 700;
    font-size: 57px;
    line-height: 1em;
    color: #000;
    letter-spacing: 15px;
    text-transform: uppercase;
}

.post_list .card-body {
    padding: 1.25rem;
}

.post_list .card-img,
.post_list .card-img-top {
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px);
    cursor: pointer;
    color: #f1a31a;
    width: 100%;
    display: block;
    max-width: 100%;
    height: 299px;
    transition: transform 0.5s ease;
}

.post_list .img-wrapper {
    max-width: 100%;
    height: 299px;
    overflow: hidden;
    background: ghostwhite;
}

.post_list .card-img-top:hover {
    transform: scale(1.1);
}

.post_list .card-title {
    color: #333;
    position: relative;
    line-height: 1.4em;
    font-weight: 700;
    margin-top: 12px;
    font-size: 24px;
    transition: all 500ms ease;
}

.post_list .card-title:hover {
    color: #f1a31a;
    text-decoration: underline;
}

.post_list .card-text {
    position: relative;
    color: #666666;
    font-size: 16px;
    line-height: 1.9em;
    display: -webkit-box;
    max-width: 100%;
    font-weight: lighter;
}

.post_list .card-author {
    position: relative;
    color: #f1a31a;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: unset;
}

.post_list .card-views {
    position: relative;
    color: #666666;
    padding: unset;
    margin: unset;
    font-size: 16px;
}

.post_list .author_views {
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-content: center;
    margin-bottom: 12px;
}

.post_list .read_more {
    color: #000000 !important;
    position: relative;
    display: block;
    text-align: center;
    line-height: 30px;
    letter-spacing: 0px;
    opacity: 1;
    font-weight: 700;
    padding: 0px 0px 20px 0px;
    font-size: 16px;
}

.post_list .read_more a {
    color: #000000;
    font-size: 16px;
    border-bottom: 1px solid #000000;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
}

.post_list .read_more a:hover {
    color: #f1a31a;
    border-bottom: 1px solid #f1a31a;
}

/* Pagination Styles */
.post_list .pagination {
    padding: 10px 0;
}

.post_list .page-link:focus {
    box-shadow: none;
}

.post_list .pagination .page-item i {
    font-size: 11px !important;
    text-align: center;
    align-content: center;
    align-items: center;
    padding: unset;
    margin: unset;
    font-weight: lighter;
}

.post_list .pagination .page-link {
    color: black;
    border: none;
    margin: 0 1px;
    background: unset;
    font-size: 16px;
}

.post_list .pagination .page-link:hover {
    background-color: unset;
    color: #f1a31a;
    cursor: pointer;
}

.post_list .pagination .page-link.disabled i {
    color: #0006 !important;
}

.post_list .pagination .page-item.active .page-link {
    background-color: unset;
    border-color: unset;
    color: #f1a31a;
    align-content: center;
}

.post_list .pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
    background: whitesmoke;
    padding: 10px 15px;
    border-radius: 10px;
}

/* comment form ******************************************************************************************************************************************************* */

.comment-wrapper {
    max-width: 100%;
    padding: 20px 0;
}

.comment-wrapper .comment-title {
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize !important;
    font-weight: 600;
}

.comment-wrapper .comment-form .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.comment-wrapper .comment-form .form-group.half {
    width: 49%;
}

.comment-wrapper .comment-form label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

.comment-wrapper .comment-input,
.comment-wrapper .comment-textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: #fff;
}

.comment-wrapper .comment-textarea {
    height: 130px
}

.comment-wrapper .comment-input:focus,
.comment-wrapper .comment-textarea:focus {
    outline: none;
    color: #212529;
    background-color: #fff;
    border-color: #f1a31a;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255, 163, 64, 0.04);
}

.comment-wrapper .comment-textarea {
    min-height: 180px;
    resize: vertical;
}

.comment-wrapper .comment-submit {
    width: 100%;
    background: #f1a31a;
    color: black;
    border: none;
    padding: 12px;
    font-size: 19px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: background 0.3s ease;
}

.comment-wrapper .comment-submit:hover {
    background: #f1a31acf;
}

@media screen and (max-width: 780px) {
    .comment-wrapper .comment-form .form-row {
        flex-direction: column;
    }

    .comment-wrapper .comment-form .form-group.half {
        width: 100%;
    }
}

/* post details ***************************************************************************************************************************************************************** */

.post_detail .heading {
    text-align: center;
}

.alternative_title {
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize !important;
    font-weight: 600;
}

.post_detail .heading .author_name_data {
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    text-decoration: inherit;
    color: #000000;
    transition: transform 0.5s ease;
    margin: unset;
}

.post_detail .heading .author_name_data:hover {
    color: #f1a31a;
}

.post_detail .heading .title {
    line-height: 54px;
    font-weight: 600;
    font-size: 46px;
    width: 68%;
    word-wrap: break-word;
}

.post_detail .heading .publishdate {
    line-height: 24px;
    font-weight: 400;
    font-size: 16px;
    opacity: 0.5;
}

.post_detail #carouselExampleAutoplaying .thumbnailimage {
    color: transparent;
    object-fit: cover;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
    max-height: 750px;

}

.post_detail #carouselExampleAutoplaying .thumbnailimage:hover {
    transform: scale(1.02);
}

.post_detail .tag_socialshare .tag_title {
    display: inline-block;
    margin: 3px;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    color: #000000;
    text-transform: capitalize;
    text-decoration: none;
    transition: all 500ms ease;
    border: 1px solid #EEEEEE;
}

.post_detail .tag_socialshare .tag_title:hover {
    color: #f1a31a;
    border: 1px solid #f1a31a;
}

.post_detail .tag_socialshare .socialshare a {
    display: inline-block;
    margin: 7px;
    text-align: center;
}

.post_detail .tag_socialshare .socialshare a img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

.post_detail .tag_socialshare .socialshare a:hover img {
    transform: scale(1.1);
}

.post_detail .tag_socialshare .socialshare .copy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.post_detail .tag_socialshare .socialshare .copy-link i {
    font-size: 20px;
    color: #868484bd;
    transition: color 0.3s;
}

.post_detail .tag_socialshare .socialshare .copy-link:hover i {
    color: #f1a31a;
}

.post_detail .item_data .clearfix .btn:focus {
    outline: 0;
    box-shadow: unset;
}

.post_detail .item_data .clearfix button:focus:not(:focus-visible) {
    outline: 0;
}

.post_detail .tags p {
    font-size: 14px !important;
    color: #6c757d !important;
    padding-left: 1rem !important;
    margin-bottom: 15px;
    font-style: italic;
}

.post_detail .comments .content p {
    padding: 0;
    margin: 0;
    font-weight: 600;
}

.post_detail .related-post-teaser {
    font-size: 14px !important;
    color: #6c757d !important;
}

.post_detail .relatedposts .related-post-thumbnail {
    border-radius: 8px;
    max-width: 125px;
    height: 125px;
}

.post_detail .relatedposts .related-post-card {
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.post_detail .relatedposts .related-post-card:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .post_detail .relatedposts .related-post-card {
        padding: 15px;
    }
}

.post_detail .author-detail .author_intro {
    font-size: 15px;
}

.post_detail .author-detail .author-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.post_detail .author-detail .author-avatar img {
    height: 120px;
    width: 120px;
    object-fit: contain;
}

.post_detail .author-detail .author-info {
    padding-left: 20px;
}

.post_detail .author-detail .author-name {
    font-size: 1.75rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.post_detail .author-detail .author-designation {
    font-size: 1.2rem;
    color: #f1a31a !important;
    margin-bottom: 20px;
}

.post_detail .author-detail .social-media-links .col {
    display: flex;
    justify-content: center;
}

.post_detail .author-detail .sm_icons {
    max-width: 30px;
    margin-right: 10px;
    transition: transform 0.2s ease;
}

.post_detail .author-detail .sm_icons:hover {
    transform: scale(1.1);
}

.post_detail .author-detail .author-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .post_detail .author-detail .author-avatar {
        margin-bottom: 20px;
    }

    .post_detail .author-detail .author-info {
        padding-left: 0;
    }
}

.post_detail .related-files-carousel .item {
    display: flex;
    justify-content: center;
    padding: 10px;
}

.post_detail .related-files-carousel img,
.post_detail .related-files-carousel video {
    max-height: 315px;
    object-fit: cover;
}

.post_detail .nextprvbtn .md-col-6 {
    width: 49% !important;
    padding: 10px 20px;
    border-radius: 59px;
    transition: all 0.3s ease;
    border: 1px solid #f1a31a;
}

.post_detail .nextprvbtn a {
    font-size: 1rem;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.post_detail .nextprvbtn .md-col-6:hover {
    border-color: #f1a31a;
    color: #f1a31a;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.post_detail .nextprvbtn .md-col-6:hover a {
    color: #f1a31a;
}

@media (max-width: 800px) {
    .post_detail .nextprvbtn .md-col-6 {
        width: 100% !important;
        padding: 8px 15px; 
    }

    .post_detail .nextprvbtn a {
        font-size: 0.9rem; 
    }

    .post_detail .nextprvbtn .md-col-6:hover {
        box-shadow: none; 
    }
}

@media (max-width: 480px) {
    .post_detail .nextprvbtn .md-col-6 {
        padding: 6px 12px; 
    }

    .post_detail .nextprvbtn a {
        font-size: 0.8rem;  
    }

    .post_detail .nextprvbtn .md-col-6 svg {
        width: 20px;
        height: 20px;
    }
}

.post_detail .bi.bi-arrow-left-circle {
    padding: 0px 1px 0px 0px;
}

.post_detail .owl-carousel .owl-item.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.post_detail .owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.post_detail .owl-carousel {
    position: relative;
}

.post_detail .owl-next,
.post_detail .owl-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.post_detail .owl-prev {
    left: -1%;
}

.post_detail .owl-next {
    right: -1%;
}

.post_detail .owl-carousel .owl-prev.disabled,
.post_detail .owl-carousel .owl-next.disabled {
    opacity: 0.5;
    pointer-events: none;
}

.post_detail .owl-dots {
    text-align: center;
    padding-top: 15px;
}

.post_detail .owl-dots button.owl-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    display: inline-block;
    background: #ccc !important;
    margin: 0 3px;
}

.post_detail .owl-dots button.owl-dot.active {
    background-color: #FEAE00 !important;
}

.post_detail .owl-dots button.owl-dot:focus {
    outline: none;
}

.post_detail .owl-nav button:focus {
    outline: none;
}

/* item content ****************************************************************************************** */

.item_content header {
    margin-bottom: 10px;
    text-align: center;
}

.item_content a {
    color: #000;
    text-decoration: underline;
    font-weight: 500;
}

.item_content a:hover {
    color: #f1a31a;
}

.item_content p:has(a[href="#top"]) {
    text-align: center;
    color: #000;
    text-decoration: none;
    font-weight: 500;
    padding-top: 10px;
    padding-bottom: 10px;
}

.item_content header h2 {
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize !important;
    font-weight: 600;
    padding: unset;
    margin: unset;
}

.item_content header h3 {
    font-size: 16px;
    color: #555;
    margin: unset;
    padding: unset
}


.item_content .frame-type-image header h1 {
    font-size: 28px;
    line-height: 32px;
    text-transform: capitalize !important;
    font-weight: 600;
    padding: unset;
    margin: unset;
}

.item_content .frame-type-image header h2 {
    font-size: 16px;
    color: #555;
    margin: unset;
    padding: unset
}


.item_content header p {
    margin: unset;
    font-size: 14px;
    color: #888;
    padding-top: 10px;
    padding: 4px 0px;
}

.item_content time {
    font-size: 14px;
    color: #888;
}

.item_content .frame.frame-type-image,
.item_content .frame.frame-type-html {
    text-align: center;
    padding: 5px;
}

.item_content .ce-textpic {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    text-align: start;
    align-items: center;
    flex-direction: column
}

.item_content .ce-gallery img {
    display: block;
    margin: 0 auto;
    max-width: 270px;
    border-radius: 5px;
    max-height: 218px;
    width: 100% !important;
    object-fit: contain;
    transition: all 0.3s ease 0s;
}

.item_content .image-caption {
    font-size: 13px;
    color: #555;
}

.item_content .ce-bodytext {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.item_content p {
    margin-bottom: 16px;
}

.item_content .frame-type-text p {
    font-size: 16px;
    color: #444;
}

@media (max-width: 768px) {
    .item_content h2 {
        font-size: 22px;
    }

    .item_content h3 {
        font-size: 18px;
    }
}

.item_content .ce-gallery .ce-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.item_content figure.table {
    width: 100%;
    overflow-x: auto;
    margin: 20px 0;
}

.item_content table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    font-size: 14px;
}

.item_content table thead th {
    background-color: #f5f5f5;
    font-weight: 600;
}

.item_content table th,
.item_content table td {
    border: 1px solid #ddd;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
}

.item_content table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

.item_content blockquote {
    border-left: 4px solid #f1a31a;
    padding-left: 15px;
    margin: 20px 0;
    color: #555;
}

.item_content ul,
.item_content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.item_content li {
    margin-bottom: 8px;
}

/* tag_list ******************************************************************************************************************************** */

.tag_list .card-title {
    font-size: 15px;
}

.tag_list .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 28px;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, 0.2) !important;
}

.tag_list .card:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.tag_list .card .card-body h5 a {
    transition: all 0.3s ease 0s;
}

.tag_list .card:hover .card-body h5 a {
    color: #f1a31a !important;
}


/* post filter ************************************************************************************************************************************************ */
.post_filter #filterSidebar {
    width: 320px;
}

.post_filter .scrollbar-container {
    max-height: 400px;
    overflow-y: auto;
}

.post_filter .form-control:focus {
    color: #212529;
    background-color: #fff;
    border-color: #f1a31a;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgba(255, 163, 64, 0.04);
}

.post_filter .form-control:focus-visible {
    outline: none;
}

.post_filter .form-group {
    width: 98%;
}

.post_filter .btn:focus {
    box-shadow: unset;
}


.post_filter input[type="radio"] {
    accent-color: #e19613;
}

.post_filter .button_filter,
.post_filter .button_apply_filter {
    padding: 7px 20px;
    color: black;
    border: 1px solid #f1a31a;
    background: white;
    border-radius: 5px;
    transition: all 0.5s ease 0.1s;
    font-size: 15px;
}

.post_filter .button_filter:hover,
.post_filter .button_apply_filter:hover {
    padding: 7px 20px;
    color: black;
    border: 1px solid #f1a31ade;
    background: #f1a31ade;
    border-radius: 5px;
}