/*
Theme Name: Twenty Sixteen
Theme URI: https://wordpress.org/themes/twentysixteen/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Twenty Sixteen is a modernized take on an ever-popular WordPress layout — the horizontal masthead with an optional right sidebar that works perfectly for blogs and websites. It has custom color options with beautiful default color schemes, a harmonious fluid grid using a mobile-first approach, and impeccable polish in every detail. Twenty Sixteen will make your WordPress look beautiful everywhere.
Version: 3.7
Tested up to: 6.9
Requires at least: 4.4
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, right-sidebar, accessibility-ready, custom-background, custom-colors, custom-header, custom-menu, editor-style, featured-images, flexible-header, microformats, post-formats, rtl-language-support, sticky-post, threaded-comments, translation-ready, blog, block-patterns
Text Domain: twentysixteen

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/


/**
 * Table of Contents
 *
 * 1.0 - Normalize
 * 2.0 - Genericons
 * 3.0 - Typography
 * 4.0 - Elements
 * 5.0 - Forms
 * 6.0 - Navigation
 *   6.1 - Links
 *   6.2 - Menus
 * 7.0 - Accessibility
 * 8.0 - Alignments
 * 9.0 - Clearings
 * 10.0 - Widgets
 * 11.0 - Content
 *    11.1 - Header
 *    11.2 - Posts and pages
 *    11.3 - Post Formats
 *    11.4 - Comments
 *    11.5 - Sidebar
 *    11.6 - Footer
 * 12.0 - Media
 *    12.1 - Captions
 *    12.2 - Galleries
 * 13.0 - Multisite
 * 14.0 - Media Queries
 *    14.1 - >= 710px
 *    14.2 - >= 783px
 *    14.3 - >= 910px
 *    14.4 - >= 985px
 *    14.5 - >= 1200px
 * 15.0 - Print
 */


/**
 * 1.0 - Normalize
 *
 * Normalizing styles have been helped along thanks to the fine work of
 * Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
 */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body{
    font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    background:#f7f7fb;
    color:#17092f;
}
h1, h2, h3, h4, h5, h6 {
    font-family: Inter, system-ui, sans-serif;
    font-weight: 600;
}
.container{
    max-width: 80rem;
    margin:auto;
    padding:0 20px;
}

/* Navbar */
.navbar{
    background:#fff;
    padding:16px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.nav-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo img{
    width:95px;
}

.nav-menu{
    display:flex;
    gap:42px;
}

.nav-menu a {
    text-decoration: none;
    color: #4a435e;
    font-size: 17px;
    font-weight: 600;
}
.nav-buttons{
    display:flex;
    gap:14px;
}

.btn{
    display:inline-block;
    padding:13px 25px;
    border-radius:9px;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:700;
}
.btn {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.btn-blue{
    background:linear-gradient(90deg,#49b9e8,#7939b6);
}

.btn-purple{
    background:#7532a8;
}

/* Hero */
.hero{
    min-height:370px;
    display:flex;
    align-items:center;
    text-align:center;
    background:
    linear-gradient(rgba(247,244,252,0.92),rgba(237,226,247,0.96)),
    linear-gradient(90deg,rgba(90,70,130,0.08) 1px,transparent 1px),
    linear-gradient(rgba(90,70,130,0.08) 1px,transparent 1px);
    background-size:auto,80px 80px,80px 80px;
}

.hero-badge{
    display:inline-block;
    border:1px solid #7b3ca8;
    color:#210d3c;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:700;
    background:#fff;
}
.hero-badgepost {
    display: inline-block;
    border: 1px solid #f5e8ff;
    color: #8d50df;
    padding: 8px 15px 8px 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    background: #fff;
}
.hero-badgepost svg {
    height: 15px;
    position: relative;
    top: 2px;
}
.metasingle {
	text-align:center;
	margin-bottom:30px;
}
.hero h1{
    font-size:56px;
    line-height:1.1;
    margin-bottom:24px;
    font-weight:800;
}

.hero h1 span{
    color:#8d4bc0;
}

.hero p{
    max-width:700px;
    margin:auto;
    color:#746b82;
    font-size:17px;
    line-height:1.7;
}

/* Blogs */
.blog-section{
    padding:55px 0 70px;
}

.blog-card{
    display:grid;
    grid-template-columns:300px 1fr;
    gap:32px;
    background:linear-gradient(135deg, rgba(71,2,119,0.24) 0%,rgba(255,255,255,0.23) 26%,rgba(255,255,255,0.22) 49%,rgba(255,255,255,0.21) 73%,rgba(71,2,119,0.2) 100%);
    border:1px solid #ded0eb;
    border-radius:24px;
    padding:24px;
    margin-bottom:24px;
    align-items:center;
}

.blog-img{
    height:180px;
    border-radius:16px;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tag{
    display:inline-block;
    background:#b88bd7;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:6px 12px;
    border-radius:20px;
    margin-bottom:12px;
}

.blog-card h2 {
    line-height: 1.2;
    margin-bottom: 12px;
    font-size: 1.875rem;
    font-weight: 600;
}
.blog-card p{
    font-size:15px;
    line-height:1.6;
    color:#62566f;
}

.blog-card p a {
    color:#6c249d;
    font-weight:700;
    text-decoration:none;
}
.blog-card:hover {
	box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.meta{
    margin-top:18px;
    color:#6b6074;
    font-size:13px;
}
.blog-card h2 a {
    color: #420181 !important;
    text-decoration: none;
}
.post-thumbnail {
    width: 100%;
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 30px;
}
.post-thumbnail img {
    width: 100%;
    object-fit: cover;
    object-position: center -120px;
    display: block;
}
.author{
    margin-top:18px;
    display:flex;
    align-items:center;
    gap:10px;
    color:#7831a5;
    font-weight:700;
    font-size:13px;
}

.author-icon{
    width:26px;
    height:26px;
    border-radius:50%;
    background:#6f249c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Newsletter */
.newsletter{
    background:#fff;
    padding:55px 0;
}
.news-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
    padding: 12px 22px 62px 22px;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 60px;
}
.newsletter h2{
    font-size:30px;
    margin-bottom:10px;
}

.newsletter p{
    color:#777;
}

.form-box{
    display:flex;
    gap:12px;
}

.form-box input{
    flex:1;
    padding:12px 22px;
    border:1px solid #eee;
    border-radius:40px;
    outline:none;
}

.form-box button{
    border:none;
    padding:16px 28px;
    border-radius:12px;
    background:linear-gradient(90deg,#49b9e8,#8037b3);
    color:#fff;
    font-weight:700;
}

/* Footer */
.footer{
    background: linear-gradient(135deg, rgba(71,2,119,0.24) 0%,rgba(255,255,255,0.23) 26%,rgba(255,255,255,0.22) 49%,rgba(255,255,255,0.21) 73%,rgba(71,2,119,0.2) 100%);
    border-top:1px solid #eee;
    padding:40px 0 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:1.5fr 1fr 1fr 1fr;
    gap:40px;
}

.footer-logo{
    width:95px;
    margin-bottom:14px;
}

.footer p{
    color:#666;
    font-size:14px;
    line-height:1.6;
}

.footer h4{
    margin-bottom:18px;
    font-size:16px;
}

.footer h4:after{
    content:"";
    display:block;
    width:55px;
    height:3px;
    background:#4ab3dc;
    margin-top:8px;
}

.footer a{
    display:block;
    text-decoration:none;
    color:#666;
    font-size:14px;
    margin-bottom:12px;
}

.footer-bottom{
    border-top:1px solid #eee;
    margin-top:30px;
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    color:#777;
    font-size:13px;
}
.footer-bottom a { display:inline;}
footer .container {
	max-width: 1536px;
}
.footer-btn {
    padding: 16px 30px !important;
    font-size: 14px !important;
    white-space: nowrap;
    line-height: 1 !important;
    border-radius: 14px;
    height: auto !important;
    min-height: unset !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-gradient {
    border-radius: .75rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    background: linear-gradient(90deg, #48b4e1, #72339f);
}
article header {
	padding:30px 0;
	text-align: center;
}
article header h1 {
    font-size: 50px;
    background: linear-gradient(90deg, #14b3f6, #7939b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}
article .entry-content {
	padding:0 120px;
}
.catpostname {
	text-align:Center;
	justify-content:center;
}
.entry-footer {
    padding: 22px 28px;
    margin-bottom: 42px;
    width: 100%;
    margin: 22px auto;
	
}
.author-card {
  background: #f3eefb;
  border-radius: 20px;
  padding: 25px 30px;
  border: 1px solid #e0d6f5;
  font-family: Arial, sans-serif;
  margin: 35px 0 20px;
}

.author-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: #6a35b1;
    margin-bottom: 15px;
    font-weight: 600;
}
.author-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-icon-s {
  width: 60px;
  height: 60px;
  background: #4b1e83;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-icon i {
  color: #fff;
  font-size: 22px;
}

.author-name {
  font-size: 20px;
  font-weight: 600;
  color: #111;
}

.author-role {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 5px;
}
.entry-footer .byline {
	display:flex;
}
.entry-footer .byline img {
	
}
.related-blog-section {
  padding: 30px;
  font-family: Arial, sans-serif;
}

.related-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.related-label {
    color: #6f35b6;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.related-header h2 {
    color: #6f35b6;
    font-size: 33px;
    line-height: 1.2;
    margin: 0;
    font-weight: 600;
}
.view-all {
  color: #6f35b6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.related-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.related-card img {
  transition: transform 0.45s ease;
}

.related-content {
  transition: transform 0.35s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(80, 34, 130, 0.14);
}

.related-card:hover img {
  transform: scale(1.08);
}

.related-card:hover .related-content {
  transform: translateY(-8px);
}
.related-card {
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #eee7f8;
  box-shadow: 0 12px 30px rgba(80, 34, 130, 0.08);
}
.related-card:hover {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.related-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.related-content {
  padding: 30px;
}

.related-content span {
    color: #7a35b8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 18px;
}
.related-content h3 {
    font-size: 24px;
    line-height: 1.25;
    color: #050322;
    margin: 0 0 20px;
    font-weight: 600;
}
.related-content h3 a {
	text-decoration:none;
	color: #050322;
}
.related-content p {
    font-size: 14px;
    line-height: 1.5;
    color: #45405f;
    margin: 0;
}
@media (max-width: 768px) {
  .related-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-header h2 {
    font-size: 28px;
  }

  .related-card img {
    height: 220px;
  }
  .btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 9px;
    color: #fff;
    text-decoration: none;
    font-size: 9px;
    font-weight: 700;
   }
	article header h1 {
		font-size: 25px;
	}
.post-thumbnail {
    max-height: 230px;
}
.post-thumbnail img {
    width: 100%;
    object-fit: cover; 
    object-position: center 0px;
    display: block;
    height: auto;
}
article .entry-content {
    padding: 0 20px;
}
.related-blog-section {
    padding: 0px;
}
}
/* Responsive */
@media(max-width:900px){
    .nav-menu{
        display:none;
    }

    .blog-card{
        grid-template-columns:1fr;
    }

    .news-inner,
    .footer-grid{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:40px;
    }

    .form-box{
        flex-direction:column;
    }
}