/* =========================================================
   Speech Publications - Frontend News Beautification
   Loaded locally (url('public/...')) on the news pages
   ========================================================= */

/* ---------- Breadcrumb wrapper ---------- */
.breadcrumb-wrapper {
    background: linear-gradient(135deg, #0b4cff14 0%, #7ab2781a 60%, #FED0491a 100%) !important;
    border-bottom: 1px solid rgba(122, 178, 120, .15);
}

.breadcrumb-wrapper .page-heading h1 {
    color: var(--header);
    font-weight: 800;
    letter-spacing: -.5px;
}

.breadcrumb-wrapper .breadcrumb-items li {
    color: var(--text);
    font-weight: 500;
}

.breadcrumb-wrapper .breadcrumb-items li a {
    color: var(--theme);
    font-weight: 600;
    transition: color .3s ease;
}

.breadcrumb-wrapper .breadcrumb-items li a:hover {
    color: var(--header);
}

/* ---------- News cards ---------- */
.news-card-items {
    border: none !important;
    border-radius: 18px !important;
    box-shadow: 0 6px 24px rgba(17, 17, 44, .06);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
}

.news-card-items:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(17, 17, 44, .12);
}

.news-card-items .news-image {
    border-radius: 18px 18px 0 0;
    background: #f1f4f8;
}

.news-card-items .news-image img {
    padding: 14px !important;
    border-radius: 26px;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 16 / 10;
}

.news-card-items .news-image img:first-child {
    object-position: center;
    aspect-ratio: auto;
    height: 100% !important;
}

.news-card-items .news-image .post-box {
    top: 26px;
    left: 26px;
    padding: 8px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    background: rgba(122, 178, 120, .92);
    backdrop-filter: blur(4px);
    box-shadow: 0 6px 16px rgba(122, 178, 120, .35);
}

.news-card-items .news-content {
    padding: 20px 26px 26px;
}

.news-card-items .news-content ul {
    gap: 18px;
    flex-wrap: wrap;
}

.news-card-items .news-content ul li {
    font-size: 13px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-card-items .news-content ul li i {
    color: var(--theme);
    margin: 0;
    font-size: 15px;
}

.news-card-items .news-content h3 {
    font-size: 19px;
    line-height: 1.45;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-items .news-content h3 a {
    color: var(--header);
    transition: color .3s ease;
}

.news-card-items .news-content h3 a:hover {
    color: var(--theme);
}

.news-card-items .news-card-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
}

.news-card-items .news-content .theme-btn-2 {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap .3s ease, color .3s ease;
}

.news-card-items .news-content .theme-btn-2:hover {
    color: var(--theme);
    gap: 12px;
}

/* ---------- Featured post ---------- */
.blog-post-details .single-blog-post {
    border-radius: 18px;
    overflow: hidden;
}

.blog-post-details .post-featured-thumb {
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(17, 17, 44, .1);
}

.blog-post-details .post-content .post-list {
    gap: 24px;
    flex-wrap: wrap;
}

.blog-post-details .post-content .post-list li {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-post-details .post-content .post-list li i {
    color: var(--theme);
    font-size: 16px;
}

.blog-post-details .post-content h3 {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 14px;
}

.blog-post-details .post-content h3 a {
    color: var(--header);
    transition: color .3s ease;
}

.blog-post-details .post-content h3 a:hover {
    color: var(--theme);
}

.blog-post-details .post-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---------- Sidebar widgets ---------- */
.main-sidebar .single-sidebar-widget {
    padding: 28px 26px;
    border: none;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 6px 24px rgba(17, 17, 44, .06);
    transition: box-shadow .3s ease;
}

.main-sidebar .single-sidebar-widget:hover {
    box-shadow: 0 14px 34px rgba(17, 17, 44, .1);
}

.main-sidebar .single-sidebar-widget .wid-title h3 {
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 14px;
}

.main-sidebar .single-sidebar-widget .search-widget form input {
    border-radius: 100px;
    padding: 16px 60px 16px 20px;
    border: 1px solid #e9edf2;
    font-size: 15px;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.main-sidebar .single-sidebar-widget .search-widget form input:focus {
    outline: none;
    border-color: var(--theme);
    box-shadow: 0 0 0 4px rgba(122, 178, 120, .12);
}

.main-sidebar .single-sidebar-widget .search-widget form button {
    width: 56px;
    border-radius: 0 100px 100px 0;
    background: var(--theme);
    color: #fff;
    transition: background .3s ease;
}

.main-sidebar .single-sidebar-widget .search-widget form button:hover {
    background: var(--header);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li {
    padding: 13px 18px;
    border: none;
    border-radius: 10px;
    background: #f6f8fb;
    font-size: 15px;
    transition: all .3s ease;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active {
    background: var(--theme);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active a,
.main-sidebar .single-sidebar-widget .news-widget-categories ul li.active span {
    color: #fff;
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover {
    background: var(--theme);
    transform: translateX(4px);
}

.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover a,
.main-sidebar .single-sidebar-widget .news-widget-categories ul li:hover span {
    color: #fff;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px dashed #e9edf2;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-thumb {
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 10px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-thumb img {
    width: 86px !important;
    height: 70px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform .4s ease;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-items:hover .recent-thumb img {
    transform: scale(1.08);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-content ul li {
    font-size: 12px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-content ul li i {
    color: var(--theme);
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-content h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-content h6 a {
    color: var(--header);
    transition: color .3s ease;
}

.main-sidebar .single-sidebar-widget .recent-post-area .recent-content h6 a:hover {
    color: var(--theme);
}

/* ---------- Author widget (details sidebar) ---------- */
.main-sidebar .author-widget .author-thumb {
    width: 110px;
    height: 110px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(122, 178, 120, .25);
}

.main-sidebar .author-widget .author-thumb img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
}

/* ---------- News details page ---------- */
.news-details-area .post-featured-thumb {
    border-radius: 18px;
    min-height: 420px;
    box-shadow: 0 12px 34px rgba(17, 17, 44, .1);
}

.news-details-area .post-content .post-list {
    gap: 24px;
    flex-wrap: wrap;
}

.news-details-area .post-content .post-list li {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-details-area .post-content .post-list li i {
    color: var(--theme);
    font-size: 16px;
}

.news-details-area .post-content h3 {
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
}

.news-details-area .news-description {
    font-size: 16px;
    color: #3d3d3d;
}

.news-details-area .news-description p {
    margin-bottom: 1.2rem;
}

.news-details-area .tag-share-wrap {
    background: #f6f8fb;
    border-radius: 14px;
    padding: 20px 24px;
}

.news-details-area .tagcloud a {
    display: inline-block;
    padding: 6px 14px;
    margin: 0 6px 6px 0;
    border-radius: 100px;
    background: #fff;
    border: 1px solid #e9edf2;
    color: var(--text);
    font-size: 13px;
    font-weight: 500;
    transition: all .3s ease;
}

.news-details-area .tagcloud a:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
}

.news-details-area .social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e9edf2;
    color: var(--text);
    margin-left: 6px;
    transition: all .3s ease;
}

.news-details-area .social-share a:hover {
    background: var(--theme);
    border-color: var(--theme);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Comments ---------- */
.comments-area .comments-heading h3 {
    font-size: 24px;
    font-weight: 700;
}

.comments-area .blog-single-comment .image img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(122, 178, 120, .25);
}

.comments-area .blog-single-comment .content .head .con h5 {
    font-weight: 700;
}

.comments-area .blog-single-comment .content .head .con span {
    font-size: 13px;
    color: var(--text);
}

/* ---------- Comment form ---------- */
.comment-form-wrap h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 22px;
}

.comment-form-wrap .form-clt span {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--header);
    margin-bottom: 8px;
}

.comment-form-wrap .form-clt input,
.comment-form-wrap .form-clt textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid #e9edf2;
    border-radius: 10px;
    font-size: 15px;
    background: #fcfdfe;
    transition: border-color .3s ease, box-shadow .3s ease;
}

.comment-form-wrap .form-clt input:focus,
.comment-form-wrap .form-clt textarea:focus {
    outline: none;
    border-color: var(--theme);
    box-shadow: 0 0 0 4px rgba(122, 178, 120, .12);
}

/* ---------- Load more button ---------- */
#load-more-btn {
    border-radius: 100px;
    padding: 16px 34px;
}

/* ---------- Section titles ---------- */
.section-title h2 {
    font-weight: 800;
    letter-spacing: -.5px;
}
