/* ============================================================
   REMNANT LOVE
   DEVOTIONALS
============================================================ */

.rl-featured-devotional {

    padding: 75px 0;

    background: #f7f5f0;
}


/* ============================================================
   HOME FEATURED CARD
============================================================ */

.rl-devotional-home-card {

    overflow: hidden;

    border-radius: 22px;

    background: #111;

    box-shadow:
        0 18px 50px rgba(0,0,0,.09);
}


.rl-devotional-home-content {

    height: 100%;

    padding: 55px 55px;
}


.rl-devotional-home-eyebrow,
.rl-devotional-eyebrow {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 15px;

    color: #c9a227;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .16em;

    text-transform: uppercase;
}


.rl-devotional-home-eyebrow::before,
.rl-devotional-eyebrow::before {

    content: "";

    width: 24px;
    height: 2px;

    background: currentColor;
}


.rl-devotional-home-content h2 {

    margin-bottom: 17px;

    color: #fff;

    font-size: clamp(30px, 3.4vw, 44px);

    line-height: 1.12;

    letter-spacing: -.03em;
}


.rl-devotional-home-scripture {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-bottom: 18px;

    color: #c9a227;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.rl-devotional-home-content blockquote {

    margin: 0 0 17px;

    padding-left: 17px;

    border-left: 2px solid #c9a227;

    color: rgba(255,255,255,.85);

    font-size: 16px;

    line-height: 1.7;

    font-style: italic;
}


.rl-devotional-home-content p {

    max-width: 600px;

    margin-bottom: 25px;

    color: rgba(255,255,255,.60);

    font-size: 13px;

    line-height: 1.8;
}


.rl-devotional-home-button {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 12px 19px;

    border-radius: 100px;

    color: #111;

    background: #c9a227;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;

    text-decoration: none;

    transition: all .3s ease;
}


.rl-devotional-home-button:hover {

    color: #111;

    background: #fff;
}


.rl-devotional-home-button i {

    transition: transform .3s ease;
}


.rl-devotional-home-button:hover i {

    transform: translateX(4px);
}


/* ============================================================
   IMAGE
============================================================ */

.rl-devotional-home-image {

    position: relative;

    height: 100%;

    min-height: 390px;

    overflow: hidden;
}


.rl-devotional-home-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}


.rl-devotional-home-card:hover
.rl-devotional-home-image img {

    transform: scale(1.04);
}


.rl-devotional-home-image-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(0,0,0,.08);
}


.rl-devotional-home-image-overlay i {

    width: 68px;
    height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #111;

    background: #c9a227;

    font-size: 22px;
}


/* ============================================================
   DEVOTIONAL LIST PAGE
============================================================ */

.rl-devotional-hero {

    position: relative;

    min-height: 300px;

    display: flex;
    align-items: center;

    padding: 90px 0 70px;

    background: #111;
        overflow: hidden;

}
.rl-devotional-hero-bg {

    position: absolute;
    inset: 0;

    background:
        url("../images/img_1.jpg")
        center center /
        cover no-repeat;

    transform: scale(1.03);
}

.rl-devotional-hero-overlay {

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(10,10,10,.94),
            rgba(10,10,10,.72),
            rgba(10,10,10,.45)
        );
}

.rl-devotional-hero h1 {

    position: relative;

    max-width: 950px;

    margin: 0 auto 28px;

    color: #fff;

    font-size: clamp(42px, 5vw, 60px);
    
    line-height: 1.05;


    letter-spacing: -.035em;
}


.rl-devotional-hero p {
    position: relative;

    max-width: 700px;

    margin: auto;

    color: rgba(255,255,255,.62);

    line-height: 1.8;
}


.rl-devotional-list {

    padding: 90px 0;
}


/* ============================================================
   CARDS
============================================================ */

.rl-devotional-card {

    height: 100%;

    overflow: hidden;

    border: 1px solid rgba(0,0,0,.07);

    border-radius: 18px;

    background: #fff;

    transition: all .3s ease;
}


.rl-devotional-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);
}


.rl-devotional-card-image {

    display: block;

    height: 220px;

    overflow: hidden;
}


.rl-devotional-card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}


.rl-devotional-card:hover
.rl-devotional-card-image img {

    transform: scale(1.05);
}


.rl-devotional-card-body {

    padding: 25px;
}


.rl-devotional-meta {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 10px;

    color: #999;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .05em;

    text-transform: uppercase;
}


.rl-devotional-scripture {

    display: block;

    margin-bottom: 9px;

    color: #a98216;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.rl-devotional-card h2 {

    margin-bottom: 10px;

    font-size: 21px;

    line-height: 1.3;
}


.rl-devotional-card h2 a {

    color: #111;

    text-decoration: none;
}


.rl-devotional-card p {

    margin-bottom: 20px;

    color: #777;

    font-size: 13px;

    line-height: 1.7;
}


.rl-devotional-read {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #a98216;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .07em;

    text-transform: uppercase;

    text-decoration: none;
}


.rl-devotional-read i {

    transition: transform .3s ease;
}


.rl-devotional-read:hover i {

    transform: translateX(4px);
}


/* ============================================================
   DETAIL PAGE
============================================================ */

.rl-devotional-detail-hero {

    padding: 100px 0 75px;

    background: #111;
}


.rl-devotional-detail-hero h1 {

    margin-bottom: 22px;

    color: #fff;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.08;

    letter-spacing: -.035em;
}


.rl-devotional-detail-meta {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 18px;

    color: rgba(255,255,255,.55);

    font-size: 10px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .06em;
}


.rl-devotional-detail-meta span {

    display: inline-flex;

    align-items: center;

    gap: 7px;
}


.rl-devotional-detail-meta i {

    color: #c9a227;
}


.rl-devotional-reading {

    padding: 80px 0;
}


.rl-devotional-detail-image {

    height: 420px;

    margin-bottom: 45px;

    overflow: hidden;

    border-radius: 20px;
}


.rl-devotional-detail-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* ============================================================
   SCRIPTURE
============================================================ */

.rl-devotional-scripture-box {

    margin-bottom: 40px;

    padding: 30px;

    border-left: 4px solid #c9a227;

    border-radius: 0 15px 15px 0;

    background: #f7f5f0;
}


.rl-devotional-scripture-box > span {

    display: block;

    margin-bottom: 10px;

    color: #a98216;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.rl-devotional-scripture-box blockquote {

    margin: 0;

    color: #333;

    font-size: 20px;

    line-height: 1.7;

    font-style: italic;
}


/* ============================================================
   READING CONTENT
============================================================ */

.rl-devotional-lead {

    margin-bottom: 35px;

    color: #333;

    font-size: 19px;

    font-weight: 500;

    line-height: 1.8;
}


.rl-devotional-content {

    color: #444;

    font-size: 16px;

    line-height: 1.9;
}


.rl-devotional-content h2,
.rl-devotional-content h3 {

    margin-top: 35px;

    margin-bottom: 15px;

    color: #111;
}


.rl-devotional-content p {
    
    color: #111 important;
    margin-bottom: 20px;

}


.rl-devotional-content blockquote {

    margin: 30px 0;

    padding: 20px 25px;

    border-left: 3px solid #c9a227;

    background: #f7f5f0;

    font-style: italic;
}


/* ============================================================
   PRAYER
============================================================ */

.rl-devotional-prayer {

    display: flex;

    gap: 20px;

    margin-top: 50px;

    padding: 30px;

    border-radius: 18px;

    background: #111;
}


.rl-prayer-icon {

    flex: 0 0 50px;

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #111;

    background: #c9a227;
}


.rl-prayer-label {

    display: block;

    margin-bottom: 8px;

    color: #c9a227;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.rl-prayer-content {

    color: rgba(255,255,255,.75);

    font-size: 14px;

    line-height: 1.8;
}

.rl-prayer-content
{

    color: rgba(255,255,255,.75);

    font-size: 14px;

    line-height: 1.8;
}

.rl-prayer-content h2,
.rl-prayer-content h3,
.rl-prayer-content h4 {

    color: #a98216;
}
/* ============================================================
   NAVIGATION
============================================================ */

.rl-devotional-navigation {

    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 20px;

    margin-top: 55px;

    padding-top: 30px;

    border-top: 1px solid rgba(0,0,0,.08);
}


.rl-devotional-navigation a {

    color: #111;

    text-decoration: none;
}


.rl-devotional-navigation span {

    display: block;

    margin-bottom: 7px;

    color: #a98216;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.rl-devotional-navigation strong {

    font-size: 13px;

    line-height: 1.4;
}


.rl-devotional-all {

    padding: 10px 16px;

    border: 1px solid rgba(201,162,39,.5);

    border-radius: 100px;

    font-size: 9px !important;

    font-weight: 700;

    text-transform: uppercase;
}


/* ============================================================
   EMPTY STATE
============================================================ */

.rl-devotional-empty {

    padding: 70px 25px;

    text-align: center;

    border-radius: 18px;

    background: #f7f5f0;
}


.rl-devotional-empty i {

    margin-bottom: 15px;

    color: #c9a227;

    font-size: 40px;
}


.rl-devotional-empty h3 {

    margin-bottom: 8px;
}


.rl-devotional-empty p {

    margin: 0;

    color: #777;
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 991px) {

    .rl-devotional-home-content {

        padding: 40px;
    }

    .rl-devotional-home-image {

        min-height: 300px;
    }

}


@media (max-width: 767px) {

    .rl-featured-devotional {

        padding: 60px 0;
    }

    .rl-devotional-home-content {

        padding: 32px 25px;
    }

    .rl-devotional-home-image {

        min-height: 250px;
    }

    .rl-devotional-detail-image {

        height: 280px;
    }

    .rl-devotional-reading {

        padding: 60px 0;
    }

    .rl-devotional-navigation {

        grid-template-columns: 1fr;

        text-align: left;
    }

    .rl-devotional-all {

        justify-self: start;
    }

}


/* =========================================================
   REMNANT LOVE - DEVOTIONAL COMMENTS
========================================================= */

.devotional-comments {
    background: #f8f9fa;
    border-radius: 20px;
}


/* Header */

.comments-header {
    max-width: 720px;
}

.comments-header .heading {
    font-weight: 700;
}


/* Comment area */

.comments-list {
    max-width: 780px;
    margin: 0 auto;
}

.comments-list-header {
    border-bottom: 1px solid #e7e7e7;
    padding-bottom: 12px;
}

.comments-list-header h4 {
    font-size: 18px;
    font-weight: 700;
}


/* Comment */

.rl-comment {
    display: flex;
    gap: 12px;
    padding: 18px 0;
    border-bottom: 1px solid #ececec;
}

.rl-comment-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #eeeeee;

    font-size: 13px;
    font-weight: 700;
}

.rl-comment-body {
    flex: 1;
    min-width: 0;
}


/* Meta */

.rl-comment-meta {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 3px;
}

.rl-comment-meta strong {
    font-size: 14px;
    font-weight: 600;
}

.rl-comment-meta span {
    font-size: 12px;
    color: #999;
}


/* Text */

.rl-comment-text {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
}


/* Actions */

.rl-comment-actions {
    margin-top: 4px;
}

.rl-reply-btn {
    border: 0;
    padding: 0;

    background: transparent;

    color: #777;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;
}

.rl-reply-btn:hover {
    color: #000;
}

.rl-reply-btn i {
    font-size: 10px;
    margin-right: 4px;
}


/* Replies */

.rl-comment-replies {
    margin-top: 6px;
    margin-left: 18px;

    padding-left: 14px;

    border-left: 1px solid #ddd;
}

.rl-comment-replies .rl-comment {
    padding: 10px 0;
}


/* Reply form */

.rl-reply-form {
    margin-top: 10px;
    padding: 12px;

    background: #f5f5f5;

    border-radius: 8px;
}

.rl-reply-form .form-control {
    border: 1px solid #ddd;
    border-radius: 6px;
}

.rl-reply-form .btn-link {
    color: #777;
    text-decoration: none;
}


/* Empty */

.empty-comments {
    padding: 35px 20px;
}

.empty-comments-icon {
    width: 48px;
    height: 48px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #eee;
}


/* Mobile */

@media (max-width: 576px) {

    .rl-comment {
        gap: 9px;
        padding: 14px 0;
    }

    .rl-comment-avatar {
        width: 32px;
        min-width: 32px;
        height: 32px;

        font-size: 12px;
    }

    .rl-comment-meta {
        flex-wrap: wrap;
    }

    .rl-comment-text {
        font-size: 13px;
    }

    .rl-comment-replies {
        margin-left: 8px;
        padding-left: 10px;
    }

}

