section#blog-area {
    padding-bottom: 50px;
}
.container {
    max-width: 1200px;
    margin: auto;
}

.prompt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.prompt-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.card-media {
    position: relative;
}

.card-media img {
    width: 100%;
    display: block;
}

.video-box {
    position: relative;
    overflow: hidden;
}

.video-thumb {
    width: 100%;
    display: block;
    transition: 0.3s;
}

.video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
    transition: 0.3s;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 10px 15px;
    border-radius: 50%;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #eee;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.badge.video {
    background: #ffe5e5;
    color: red;
}

.badge.image {
    background: #e5e9ff;
    color: blue;
}

.card-content {
    padding: 15px;
}

.card-content h3 {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #242424;
    font-size: 16px;
}

.date {
    color: #6B7280;
    font-size: 14px;
}

.arrow {
    position: absolute;
    right: 15px;
    bottom: 15px;
    text-decoration: none;
}





/* deatils page  */



/* ===============================
   SINGLE PAGE ONLY (SCOPED)
================================ */
.single-page {
    font-family: "Plus Jakarta Sans", sans-serif;
	padding-bottom:50px;
}

.single-page .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* ===============================
   LAYOUT
================================ */
.single-page .single-layout {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.single-page .single-main {
    width: 70%;
}

.single-page .single-sidebar {
    width: 30%;
    background: #F7EFFF;
    padding: 20px;
    border-radius: 20px;
}


.single-page p{
    color: #6B7280;
    line-height: 25px;
    font-size: 15px;
}
/* ===============================
   MEDIA (FIXED HEIGHT)
================================ */
.single-page .single-media {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
}

.single-page .single-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.single-page .single-media iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===============================
   CATEGORY
================================ */
.single-page .single-category {
    margin-bottom: 10px;
}

.single-page .single-category a {
    background: #EEF2FF;
    color: #6C63FF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
}

/* ===============================
   TITLE + DATE
================================ */
.single-page .single-title {
    font-size: 26px;
    font-weight: 600;
    color: #242424;
    margin: 10px 0;
}

.single-page .single-date {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 20px;
}

/* ===============================
   CONTENT
================================ */
.single-page .single-content {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
}

/* ===============================
   PROMPT BOX
================================ */
.single-page .prompt-box {
    margin-top: 30px;
    padding: 20px;
    border-radius: 14px;
    background: #F9FAFB;
    border: 1px solid #eee;
}

.single-page .prompt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.single-page .prompt-header span {
    font-weight: 600;
}

.single-page .prompt-header button {
    background: linear-gradient(135deg, #667EEA, #764BA2);
    color: #fff;
    border: none;
    padding: 6px 14px;
    border-radius: 6px;
    cursor: pointer;
}

/* ===============================
   SIDEBAR
================================ */
.single-page .single-sidebar h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #242424;
}

/* Sidebar Item */
.single-page .sidebar-post {
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e5e7eb;
}

/* Circle Image */
.single-page .sidebar-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* Sidebar Content */
.single-page .sidebar-content a {
    font-size: 14px;
    color: #242424;
    text-decoration: none;
    line-height: 1.4;
    display: block;
}

.single-page .sidebar-content a:hover {
    color: #6C63FF;
}

.single-page .sidebar-content span {
    font-size: 12px;
    color: #6B7280;
}

/* ===============================
   CATEGORY LIST
================================ */
.single-page .sidebar-categories {
    margin-top: 20px;
    list-style: none;
    padding: 0;
}

.single-page .sidebar-categories li {
    margin-bottom: 10px;
}

.single-page .sidebar-categories a {
    text-decoration: none;
    color: #242424;
    font-size: 14px;
}

.single-page .sidebar-categories a:hover {
    color: #6C63FF;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
    .single-page .single-layout {
        flex-direction: column;
    }

/*     .single-page .single-main,
    .single-page .single-sidebar {
        width: 100%;
    } */
}

@media (max-width: 768px) {
    .single-page .single-media {
        height: 250px;
    }
}

.pagination-wrap {
    margin-top: 50px;
    text-align: center;
    font-family: "Plus Jakarta Sans", Sans-serif;
}

span.page-numbers.current {
        font-family: "Plus Jakarta Sans", Sans-serif;
   
}

a.prev.page-numbers {
    padding-right: 10px;
}

a.next.page-numbers {
    padding-left: 10px;
}

span.page-numbers.current {
    padding: 3px;
    background: #7354af;
    border-radius: 3px;
    color: #fff;
}
/* details page  */


@media only screen and (min-width: 768px) and (max-width: 992px){
	.container {
    max-width: 100% !important;
  }
	section#blog-area {
    padding: 0 10px 50px 10px !important;
 }
	.single-page .single-main, .single-page .single-sidebar {
    width: 93% !important;
}
}
@media only screen and (min-width: 320px) and (max-width: 767px){
		section#blog-area {
    padding: 0 10px 50px 10px !important;
 }
	.single-page .container {
    max-width: 100% !important;
}
.single-sidebar {
    width: 88% !important;
}
	.single-page .single-main {
    width: 100%;
}
}