/*==================================
 Editor Notes Archive
==================================*/


.editor-notes-page{

    background:#f8f9fa;

    padding:60px 0;

}


/*==================================
 Hero
==================================*/


.editor-notes-hero{

    background:#fff;

    border-radius:20px;

    padding:45px;

    display:flex;

    align-items:center;

    gap:40px;

    margin-bottom:45px;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    border-top:4px solid var(--primary-color);

}



.editor-notes-avatar img{

    width:170px;

    height:170px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #fff;

    box-shadow:0 8px 25px rgba(0,0,0,.15);

}



.editor-notes-info{

    flex:1;

}



.editor-notes-badge{

    display:inline-block;

    padding:8px 20px;

    border-radius:30px;

    background:#f8eeee;

    color:var(--primary-color);

    font-size:15px;

    font-weight:700;

    margin-bottom:15px;

}



.editor-notes-info h1{

    font-size:38px;

    font-weight:800;

    margin:0 0 12px;

    color:var(--heading-color);

}



.editor-notes-info h2{

    font-size:20px;

    color:var(--primary-color);

    margin-bottom:20px;

}



.editor-notes-info p{

    font-size:17px;

    line-height:2.2;

    color:#555;

    margin:0;

}



/*==================================
 Cards
==================================*/


.editor-notes-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.editor-note-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 8px 25px rgba(0,0,0,.06);

    transition:.3s;

}



.editor-note-card:hover{

    transform:translateY(-7px);

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}



.editor-note-image{

    height:220px;

    overflow:hidden;

}



.editor-note-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}



.editor-note-card:hover .editor-note-image img{

    transform:scale(1.05);

}



.editor-note-body{

    padding:25px;

}



.editor-note-body h2{

    font-size:21px;

    line-height:1.8;

    margin:0 0 15px;

}



.editor-note-body h2 a{

    color:var(--heading-color);

    text-decoration:none;

}



.editor-note-body h2 a:hover{

    color:var(--primary-color);

}



.editor-note-meta{

    color:#777;

    font-size:14px;

    margin-bottom:15px;

}



.editor-note-meta i{

    color:var(--primary-color);

    margin-left:8px;

}



.editor-note-body p{

    color:#555;

    line-height:2;

    font-size:15px;

}



.editor-read-more{

    display:inline-block;

    margin-top:20px;

    padding:12px 25px;

    background:#b30000;

    color:#ffffff;

    border-radius:30px;

    text-decoration:none;

    font-size:15px;

    font-weight:700;

}


.editor-read-more:hover{

    background:#800000;

    color:#ffffff;

}



.editor-read-more:hover{

    opacity:.9;

    color:#fff;

}



/*==================================
 Pagination
==================================*/


.nav-links{

    display:flex;

    justify-content:center;

    gap:10px;

    margin-top:45px;

}



.nav-links a,
.nav-links span{

    padding:10px 16px;

    background:#fff;

    border-radius:8px;

    text-decoration:none;

    color:#333;

    box-shadow:0 3px 10px rgba(0,0,0,.05);

}



/*==================================
 Responsive
==================================*/


@media(max-width:992px){


.editor-notes-grid{

    grid-template-columns:repeat(2,1fr);

}


}



@media(max-width:768px){


.editor-notes-hero{

    flex-direction:column;

    text-align:center;

    padding:30px 20px;

}



.editor-notes-avatar img{

    width:140px;

    height:140px;

}



.editor-notes-info h1{

    font-size:30px;

}



.editor-notes-info h2{

    font-size:17px;

}



.editor-notes-grid{

    grid-template-columns:1fr;

}


}

/*==================================
 Note Label
==================================*/


.editor-note-image{

    position:relative;

}



.editor-note-label{

    position:absolute;

    top:15px;

    right:15px;

    background:var(--primary-color);

    color:#fff;

    padding:6px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}


/*==================================
 Meta Improved
==================================*/


.editor-note-meta{

    display:flex;

    gap:20px;

    align-items:center;

    flex-wrap:wrap;

}



.editor-note-meta span{

    display:flex;

    align-items:center;

    gap:6px;

}

.editor-note-body h2{

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}