/* ================================
   RAYINX PREMIUM MAGAZINE LAYOUT
   ================================ */

/* Base */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #f9f9fb;
    color: #081669;
}

/* Container */
.blog-container {
    max-width: 880px;
    margin: auto;
    padding: 80px 20px;
    line-height: 1.85;
    font-size: 17px;
    background: #ffffff;
    box-shadow: 0 10px 40px hsl(226, 52%, 18%);
}

/* Hero Title */
.blog-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Section Headings */
.blog-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-top: 70px;
    margin-bottom: 20px;
    position: relative;
}

.blog-container h2:after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: hsl(225, 51%, 18%);
    margin-top: 10px;
}

/* Sub Headings */
.blog-container h3 {
    font-weight: 600;
    font-size: 20px;
    margin-top: 40px;
}

/* Paragraph */
.blog-container p {
    margin-bottom: 22px;
    color: #333;
}

/* Drop Cap for First Paragraph */
.blog-container p:first-of-type:first-letter {
    float: left;
    font-size: 60px;
    line-height: 1;
    font-weight: bold;
    margin-right: 10px;
    font-family: 'Playfair Display', serif;
}

/* Hero Image */
.blog-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 6px;
}

/* Meta */
.blog-meta {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #777;
    margin-bottom: 30px;
}

/* Table of Contents */
.toc {
    background: #f3f3f5;
    padding: 30px;
    margin: 50px 0;
    border-left: 4px solid #111;
}

.toc h2 {
    margin-top: 0;
    font-size: 22px;
}

.toc a {
    text-decoration: none;
    color: hsl(225, 51%, 18%);
    font-weight: 500;
}

.toc li {
    margin-bottom: 8px;
}

/* Lists */
.blog-container ul {
    margin: 25px 0;
    padding-left: 22px;
}

.blog-container li {
    margin-bottom: 10px;
}

/* Block Quote */
blockquote {
    border-left: 4px solid #111;
    padding-left: 20px;
    font-style: italic;
    margin: 40px 0;
    color: #555;
}

/* CTA Section */
.cta-section {
    margin-top: 60px;
    padding: 70px 20px;
    background: hsl(225, 51%, 18%);
    color: #fff;
    text-align: center;
    border-radius: 8px;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    padding-top: 0%;
}

.just {
    font-size: 24px;
    color:goldenrod;
    margin-top: 10px;
}

.cta-section p {
    color: #ddd;
}

.cta-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 30px;
    background: #fff;
    color:hsl(225, 51%, 18%);
    font-weight: 600;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #e5e5e5;
}

/* ===============================
   FOOTER SECTION
================================ */

footer {
    background: linear-gradient(to right, #081669, hsl(226, 52%, 18%));;
    color: #ffffff;
    padding: 60px 8% 30px;
    font-size: 14px;
}

/* Footer Container */
.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Each Column */
.footer-section {
    flex: 1;
    min-width: 250px;
}

/* Section Titles */
.footer-section h3 {
    font-size: 16px;
    margin-bottom: 20px;
    color: #d4af37;
    letter-spacing: 1px;
}

/* About Text */
.footer-section p {
    line-height: 1.7;
    color: #dddddd;
}

/* Quick Links */
.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #dddddd;
    transition: 0.3s ease;
}

/* Hover Effect */
.footer-section ul li a:hover {
    color: #d4af37;
    padding-left: 5px;
}

/* Contact Info */
.footer-section.contact p {
    margin-bottom: 10px;
}

/* Bottom Copyright Bar */
footer::after {
    content: "© 2026 Rayinx Research and Advisory. All Rights Reserved.";
    display: block;
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    font-size: 13px;
    color: #cccccc;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-container {
        padding: 50px 18px;
    }

    .blog-container h1 {
        font-size: 30px;
    }

    .blog-container h2 {
        font-size: 22px;
    }

    .blog-hero-img {
        height: 300px;
    }
}