.safe-home {
    background: #f5f6f8;
    padding: 25px 0 50px;
    color: #212529;
}

.safe-home .container {
    max-width: 1400px;
}

/* HERO */
.safe-hero {
    background: linear-gradient(135deg, #212529, #343a40);
    color: #fff;
    border-radius: 16px;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
}

.safe-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.safe-hero p {
    margin: 0;
    color: #d9dde1;
    font-size: 16px;
}

.safe-hero-actions {
    margin-top: 22px;
}

.safe-hero-actions .btn {
    margin-right: 8px;
}

/* SECTION */
.safe-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    margin-bottom: 22px;
    overflow: hidden;
}

.safe-section-header {
    padding: 16px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.safe-section-header h2,
.safe-section-header h3 {
    font-size: 19px;
    margin: 0;
    font-weight: 700;
}

.safe-section-header i {
    margin-right: 7px;
}

.safe-section-body {
    padding: 20px;
}

/* POST */
.safe-post {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.safe-post:first-child {
    padding-top: 0;
}

.safe-post:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.safe-post-image {
    width: 150px;
    height: 100px;
    border-radius: 10px;
    background: #e9ecef;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8a8f94;
    font-size: 30px;
}

.safe-post-content {
    flex: 1;
}

.safe-post-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 7px;
    color: #212529;
}

.safe-post-title a {
    color: inherit;
    text-decoration: none;
}

.safe-post-title a:hover {
    color: #b02a37;
}

.safe-post-excerpt {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.55;
    margin-bottom: 10px;
}

.safe-post-meta {
    font-size: 12px;
    color: #868e96;
}

.safe-post-meta span {
    margin-right: 15px;
}

/* CATEGORY */
.safe-category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid #eee;
}

.safe-category:last-child {
    border-bottom: 0;
}

.safe-category a {
    text-decoration: none;
    color: #343a40;
    font-weight: 500;
}

.safe-category a:hover {
    color: #b02a37;
}

.safe-category-count {
    min-width: 32px;
    text-align: center;
}

/* STATISTICS */
.safe-stat {
    text-align: center;
    padding: 18px 8px;
    border-right: 1px solid #eee;
}

.safe-stat:last-child {
    border-right: 0;
}

.safe-stat-number {
    font-size: 26px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 7px;
}

.safe-stat-label {
    color: #6c757d;
    font-size: 13px;
}

/* SMALL POST LIST */
.safe-small-post {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.safe-small-post:last-child {
    border-bottom: 0;
}

.safe-small-post a {
    color: #212529;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.safe-small-post a:hover {
    color: #b02a37;
}

.safe-small-meta {
    margin-top: 5px;
    font-size: 12px;
    color: #868e96;
}

/* ADD POST */
.safe-add-post {
    background: #fff;
    border: 2px dashed #ced4da;
    border-radius: 14px;
    padding: 25px;
    text-align: center;
    margin-bottom: 22px;
}

.safe-add-post i {
    font-size: 35px;
    color: #b02a37;
    margin-bottom: 10px;
}

.safe-add-post h3 {
    font-size: 19px;
    margin-bottom: 7px;
}

.safe-add-post p {
    color: #6c757d;
    margin-bottom: 15px;
}

/* TAGS */
.safe-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.safe-tag {
    background: #f1f3f5;
    border-radius: 20px;
    padding: 6px 11px;
    font-size: 12px;
    color: #495057;
    text-decoration: none;
}

.safe-tag:hover {
    background: #dee2e6;
    color: #212529;
}

/* MOBILE */
@media (max-width: 767px) {

    .safe-home {
        padding: 15px 0 30px;
    }

    .safe-hero {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .safe-hero h1 {
        font-size: 25px;
    }

    .safe-post {
        gap: 12px;
    }

    .safe-post-image {
        width: 95px;
        height: 75px;
        font-size: 24px;
    }

    .safe-post-title {
        font-size: 16px;
    }

    .safe-post-excerpt {
        display: none;
    }

    .safe-stat {
        border-right: 0;
        border-bottom: 1px solid #eee;
    }

    .safe-stat:last-child {
        border-bottom: 0;
    }
}
