/* ================================================
   Blog Single Page Styles — Double Coat Painting
   Primary: #2cabf5 | Title: #15233d | Body: #8a8a8a
   ================================================ */

/* ---- Featured Hero Image ---- */

.site-content {
     padding-bottom:0px;
}
.single-featured-img {
    margin-bottom: 0;
    border-radius: 3px 3px 0 0;
    overflow: hidden;
}

.single-hero-placeholder {
    height: 380px;
    background: linear-gradient(135deg, #15233d 0%, #2cabf5 60%, #1a3a6e 100%);
    position: relative;
    display: flex;
    align-items: flex-end;
}

.single-hero-placeholder::before {
    content: '\f1fc';
    font-family: FontAwesome;
    font-size: 120px;
    color: rgba(255,255,255,0.08);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.single-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.45));
}

.single-cat-badge {
    display: inline-block;
    background-color: #2cabf5;
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
}

/* ---- Post Header ---- */
.single-post-header {
    padding: 32px 36px 28px;
    border: 1px solid #f0f0f0;
    border-top: none;
    border-bottom: none;
    background: #fff;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.single-meta li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-meta li i {
    color: #2cabf5;
    font-size: 13px;
}

.single-meta li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.single-meta li a:hover {
    color: #2cabf5;
}

.single-post-title {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 16px;
    line-height: 1.25;
}

.single-post-intro {
    font-size: 18px;
    color: #6a6a6a;
    font-style: italic;
    line-height: 1.65;
    border-left: 4px solid #2cabf5;
    padding-left: 18px;
    margin-top: 8px;
}

/* ---- Post Body ---- */
.single-post-body {
    padding: 32px 36px;
    border: 1px solid #f0f0f0;
    border-top: none;
    background: #fff;
    font-size: 17px;
    color: #6a6a6a;
    line-height: 1.75;
}

.single-post-body h3 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin: 36px 0 14px;
    position: relative;
    padding-left: 16px;
}

.single-post-body h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    background-color: #2cabf5;
    border-radius: 2px;
}

.single-post-body p {
    margin-bottom: 18px;
}

.single-post-body strong {
    color: #15233d;
    font-weight: 700;
}

/* ---- Tip Box ---- */
.single-tip-box {
    background: linear-gradient(135deg, #edf7ff 0%, #f5fbff 100%);
    border: 1px solid #c8e9fc;
    border-left: 4px solid #2cabf5;
    border-radius: 4px;
    padding: 18px 22px;
    margin: 24px 0;
    font-size: 16px;
    color: #15233d;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.single-tip-box i {
    color: #2cabf5;
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ---- Divider ---- */
.single-divider {
    border: none;
    border-top: 1px dashed #e7e7e7;
    margin: 32px 0;
}

/* ---- Styled List ---- */
.single-styled-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 22px;
}

.single-styled-list li {
    padding: 10px 0 10px 36px;
    border-bottom: 1px dashed #eee;
    position: relative;
    font-size: 16px;
}

.single-styled-list li::before {
    content: '\f00c';
    font-family: FontAwesome;
    color: #2cabf5;
    position: absolute;
    left: 8px;
    top: 12px;
    font-size: 14px;
}

/* ---- Color Psychology Grid ---- */
.single-color-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 20px 0 28px;
}

.color-card {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #f0f0f0;
    border-radius: 4px;
    padding: 14px;
    transition: box-shadow 0.3s;
}

.color-card:hover {
    box-shadow: 0 4px 16px rgba(44,171,245,0.1);
    border-color: #d0edfb;
}

.color-swatch {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    flex-shrink: 0;
}

.swatch-blue    { background: linear-gradient(135deg, #2cabf5, #15233d); }
.swatch-yellow  { background: linear-gradient(135deg, #f7b200, #e06b00); }
.swatch-grey    { background: linear-gradient(135deg, #95a5a6, #455a64); }
.swatch-white   { background: #f8f9fa; border: 2px solid #dee2e6; }

.color-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.color-card-info strong {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.color-card-info span {
    font-size: 13px;
    color: #8a8a8a;
    line-height: 1.4;
}

/* ---- Inline CTA ---- */
.single-cta-inline {
    background: linear-gradient(145deg, #15233d, #1c3660);
    border-radius: 6px;
    padding: 30px 32px;
    margin-top: 36px;
    text-align: center;
}

.single-cta-inline h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff !important;
    text-transform: uppercase;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
}

.single-cta-inline p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    margin-bottom: 20px;
}

.single-cta-btn {
    display: inline-block;
    background-color: #2cabf5;
    color: #fff !important;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    padding: 0 32px;
    height: 42px;
    line-height: 42px;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid #2cabf5;
}

.single-cta-btn:hover {
    background: transparent;
    border-color: #fff;
    color: #fff !important;
}

/* ---- Tags Row ---- */
.single-post-tags {
    padding: 22px 36px;
    border: 1px solid #f0f0f0;
    border-top: none;
    background: #fafafa;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.tags-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #15233d;
    margin-right: 4px;
}

.single-post-tags a {
    display: inline-block;
    font-size: 13px;
    padding: 4px 14px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
    color: #8a8a8a;
    text-decoration: none;
    transition: all 0.3s;
}

.single-post-tags a:hover {
    background: #2cabf5;
    border-color: #2cabf5;
    color: #fff;
}

/* ---- Share Row ---- */
.single-share-row {
    padding: 22px 36px;
    border: 1px solid #f0f0f0;
    border-top: none;
    background: #fff;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.share-label {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #15233d;
    margin-right: 4px;
}

.single-share-links {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 0 16px;
    height: 34px;
    border-radius: 3px;
    color: #fff !important;
    text-decoration: none;
    transition: opacity 0.3s;
}

.share-btn:hover { opacity: 0.85; }
.share-fb { background: #3b5998; }
.share-tw { background: #1da1f2; }
.share-li { background: #0077b5; }

/* ---- Author Box ---- */
.single-author-box {
    display: flex;
    gap: 22px;
    align-items: flex-start;
    padding: 28px 36px;
    border: 1px solid #f0f0f0;
    border-top: none;
    background: #f9f9f9;
}

.author-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2cabf5, #15233d);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar-placeholder i {
    font-size: 32px;
    color: rgba(255,255,255,0.85);
}

.author-info h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: #15233d;
    margin: 0 0 4px;
    letter-spacing: 0.5px;
}

.author-role {
    font-size: 13px;
    color: #2cabf5;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    display: block;
    margin-bottom: 10px;
}

.author-info p {
    font-size: 15px;
    color: #8a8a8a;
    line-height: 1.6;
    margin-bottom: 10px;
}

.author-link {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: #2cabf5;
    text-decoration: none;
    transition: color 0.3s;
}

.author-link:hover { color: #15233d; }

/* ---- Related Posts ---- */
.single-related-posts {
    padding: 36px 36px 28px;
    border: 1px solid #f0f0f0;
    border-top: none;
    background: #fff;
}

.related-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 12px;
}

.related-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 2px;
    background: #2cabf5;
}

.related-card {
    border: 1px solid #f0f0f0;
    border-radius: 3px;
    overflow: hidden;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.related-card:hover {
    box-shadow: 0 6px 20px rgba(44,171,245,0.1);
    border-color: #2cabf5;
}

.related-thumb {
    height: 150px;
    transition: transform 0.4s;
}

.related-card:hover .related-thumb { transform: scale(1.05); }

.related-thumb-a { background: linear-gradient(135deg, #f7b200, #e06b00); }
.related-thumb-b { background: linear-gradient(135deg, #9b59b6, #2c3e50); }
.related-thumb-c { background: linear-gradient(135deg, #3ecfae, #2282ba); }

.related-card-body {
    padding: 16px;
}

.related-cat {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2cabf5;
    display: block;
    margin-bottom: 6px;
}

.related-card-body h4 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 8px;
}

.related-card-body h4 a {
    color: #15233d;
    text-decoration: none;
    transition: color 0.3s;
}

.related-card-body h4 a:hover { color: #2cabf5; }

.related-date {
    font-size: 12px;
    color: #bbb;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.related-date i { color: #2cabf5; margin-right: 4px; }

/* ---- Comments ---- */
.single-comments-section {
    padding: 36px 36px;
    border: 1px solid #f0f0f0;
    border-top: none;
    background: #fff;
}

.comments-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 28px;
    position: relative;
    padding-bottom: 12px;
}

.comments-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: #2cabf5;
}

.comments-heading i { margin-right: 8px; color: #2cabf5; }

.comment-item {
    display: flex;
    gap: 18px;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px dashed #eee;
}

.comment-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.comment-avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2cabf5, #15233d);
    color: #fff;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comment-body { flex: 1; }

.comment-meta {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.comment-meta strong {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.comment-meta span {
    font-size: 13px;
    color: #bbb;
}

.comment-body p {
    font-size: 15px;
    color: #8a8a8a;
    line-height: 1.65;
    margin: 0;
}

/* ---- Comment Form ---- */
.comment-form-section {
    margin-top: 40px;
    padding-top: 36px;
    border-top: 1px dashed #e7e7e7;
}

.reply-heading {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #15233d;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 24px;
    position: relative;
    padding-bottom: 12px;
}

.reply-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background: #2cabf5;
}

.reply-heading i { margin-right: 8px; color: #2cabf5; }

#comment-form input[type="text"],
#comment-form input[type="email"] {
    width: 100%;
    height: 44px;
    border: 1px solid #e6e6e6;
    padding: 0 16px;
    font-size: 15px;
    font-family: Abel, sans-serif;
    color: #8a8a8a;
    margin-bottom: 16px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
}

#comment-form input:focus {
    border-color: #2cabf5;
}

#comment-form textarea {
    width: 100%;
    border: 1px solid #e6e6e6;
    padding: 14px 16px;
    font-size: 15px;
    font-family: Abel, sans-serif;
    color: #8a8a8a;
    resize: vertical;
    min-height: 130px;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 20px;
}

#comment-form textarea:focus {
    border-color: #2cabf5;
}

.comment-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: #2cabf5;
    color: #fff;
    border: 2px solid #2cabf5;
    border-radius: 30px;
    padding: 0 32px;
    height: 42px;
    cursor: pointer;
    transition: all 0.3s;
}

.comment-submit-btn:hover {
    background: #15233d;
    border-color: #15233d;
}

/* ---- Post Navigation ---- */
.single-post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding: 18px 0;
    border-top: 1px dashed #e7e7e7;
}

.single-post-nav a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #15233d;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.single-post-nav a:hover { color: #2cabf5; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .blog-single-content.col-md-9 {
        padding-right: 15px;
    }
}

@media (max-width: 767px) {
    .blog-single-content.col-md-9,
    #blog-sidebar {
        width: 100%;
        float: none;
        padding: 0 15px;
    }

    #blog-sidebar { margin-top: 40px; }

    .single-hero-placeholder { height: 240px; }

    .single-post-header,
    .single-post-body,
    .single-post-tags,
    .single-share-row,
    .single-author-box,
    .single-related-posts,
    .single-comments-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .single-post-title { font-size: 24px; }
    .single-post-intro { font-size: 16px; }
    .single-color-grid { grid-template-columns: 1fr; }

    .single-author-box { flex-direction: column; }

    #comment-form input[type="text"],
    #comment-form input[type="email"] {
        margin-bottom: 12px;
    }

    .single-post-nav { flex-direction: column; gap: 14px; }
}
