﻿.blog-layout2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: transform 0.3s;
    padding: 15px;
}

    .blog-layout2:hover {
        transform: translateY(-5px);
    }

    .blog-layout2 .item-img img {
        width: 100%;
        height: auto;
        display: block;
    }

.blog-title {
    font-size: 18px;
    font-weight: 600;
    margin: 15px;
    color: #333;
}

    .blog-title a {
        text-decoration: none;
        color: #333;
        display: block;
    }

        .blog-title a:hover {
            color: #007bff;
        }

.fa-angle-right {
    float: right;
    color: #007bff;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 16px;
    }
}

.card-img {
    width: 100px;
    height: auto;
}

.form-control {
    border-radius: 0.5rem;
    background: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
    padding: 0.8rem 1.2rem;
    font-size: 15px;
}

.item-content {
    padding: 1rem 1.5rem;
}

.blog-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.section-space-default-less30 {
    padding-top: 50px;
    padding-bottom: 50px;
}

label.text-secondary {
    font-weight: 500;
    font-size: 15px;
    margin-bottom: 6px;
}
.investor-link {
    display: inline-block;
    font-size: 28px;
    color: #333;
    text-decoration: none;
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
    transition: color 0.3s ease;
}
#blogContainer {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-top: 20px;
}

.blog-item {
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: calc(33.333% - 20px); /* 3 columns */
    box-sizing: border-box;
    margin-bottom: 30px;
}

    .blog-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .blog-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-bottom: 1px solid #eee;
    }

    .blog-item h3 {
        font-size: 18px;
        font-weight: 600;
        margin: 15px;
        color: #243f8a;
    }

        .blog-item h3 a {
            text-decoration: none;
            color: inherit;
        }

            .blog-item h3 a:hover {
                color: #0d9eb0;
            }

    .blog-item p {
        font-size: 15px;
        color: #444;
        margin: 0 15px 15px;
        line-height: 1.6;
    }

    .blog-item small {
        display: block;
        margin: 0 15px 15px;
        font-size: 13px;
        color: #999;
    }

@media screen and (max-width: 992px) {
    .blog-item {
        width: calc(50% - 20px);
    }
}

@media screen and (max-width: 600px) {
    .blog-item {
        width: 100%;
    }
}

#common-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/*investor*/

    .investor-link::after {
        content: '';
        display: block;
        width: 60px;
        height: 2px;
        background-color: red; /* Red underline */
        position: absolute;
        bottom: 0;
        left: 0;
        transition: width 0.3s ease;
    }

    .investor-link:hover {
        color: #c60000;
    }

        .investor-link:hover::after {
            width: 100%;
        }

.bg-light {
    background-color: #ffffff !important;
}