/* Blog Page Styling */

.blog-hero-glow {
    position: absolute;
    width: 100vw;
    height: 100vh;
    left: 0;
    top: 0;
    pointer-events: none;
    z-index: -1;
    background: radial-gradient(40% 40% at 50% 50%, rgba(255, 116, 31, 0.15) 0%, rgba(255, 255, 255, 0) 100%);
}

.blog-section {
    padding: 80px 0 150px;
    position: relative;
    z-index: 10;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1300px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Card Container */
.bc-container {
    position: relative;
    display: flex;
    flex-direction: column;
    filter: drop-shadow(0px 8px 24px rgba(0, 0, 0, 0.05));
    transition: transform 0.3s ease;
    cursor: pointer;
}

.bc-container:hover {
    transform: translateY(-5px);
}

/* Card Top Section */
.bc-top {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-bottom: 1px solid #dcdcdc;
    border-radius: 32px 32px 32px 0;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.bc-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 25px;
}

.bc-date {
    font-size: 15px;
    font-weight: 600;
    color: #111;
    font-family: var(--font-dm-sans);
}

.bc-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    color: #111;
    font-family: var(--font-satoshi);
    margin: 0;
}

/* Card Bottom Section */
.bc-bottom {
    display: flex;
    position: relative;
    margin-top: -1px;
    z-index: 2;
    min-height: 84px;
}

.bc-bottom-left {
    background: #fff;
    border: 1px solid #dcdcdc;
    border-top: none;
    border-right: 1px solid #dcdcdc;
    border-radius: 0 0 32px 32px;
    padding: 20px 30px;
    width: calc(100% - 84px);
    display: flex;
    align-items: flex-end;
    position: relative;
}

.bc-read {
    font-size: 14px;
    font-weight: 700;
    color: #FF741F;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-family: var(--font-satoshi);
}

/* The SVG inverse curve placed perfectly to connect the right border of bottom-left and bottom border of top */
.bc-inverse-corner {
    position: absolute;
    top: -1px;
    /* Overlap top's bottom border */
    left: calc(100% - 1px);
    /* Align perfectly to the outside edge of the 1px right border. */
    width: 24px;
    height: 24px;
    z-index: 3;
}

.bc-button-wrap {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 84px;
    height: 84px;
    padding: 0;
    margin: 0;
}

/* The Orange Action Button */
.bc-arrow-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 68px;
    height: 68px;
    background: #FF741F;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
    box-shadow: 0 8px 24px rgba(255, 116, 31, 0.4);
}

.bc-arrow-btn:hover {
    transform: scale(1.05);
    background: #f0640e;
    box-shadow: 0 10px 30px rgba(255, 116, 31, 0.5);
}

.bc-arrow-btn svg {
    width: 28px;
    height: 28px;
}