﻿/* Hero */

/*.hero {
    height: 350px;
    background: url(hero.jpg) center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    background: rgba(0,0,0,0.5);
    padding: 40px;
    border-radius: 10px;
}*/

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Trending */

.trending {
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 20px;
    margin-top: 20px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

    .card:hover {
        transform: translateY(-5px);
    }

    .card img {
        width: 100%;
        border-radius: 10px;
    }

/* Main Layout */

/* Blog Feed */

.post {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Sidebar */

.widget {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

    .widget ul {
        list-style: none;
    }

    .widget li {
        padding: 8px;
        border-bottom: 1px solid #eee;
    }

    .widget ul li::marker {
        content: "\f101" !important;
        font-size: 22px !important;
        top: -3px !important;
        color: #c91517 !important;
        position: absolute !important;
        left: 0 !important;
        font-family: fontawesome !important;
    }

    .widget ul li a{
        padding: 0;
    }

.continuereading {
    align-self: flex-start;
    background-color: #e6c300;
    color: #111;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.blogcatimg {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}