/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/
.copyright-bar,.archive .post-image {
    display: none !important;
}
.home .site-content {
    margin-top: 20px;
}
.inside-header {
    padding: 0 !important;
}
.home-block {
    position: relative;
}
.section-header {
    border-bottom: 2px solid var(--accent);
    background-color: #ffffff;
    padding:15px 20px;
}
.section-header h3 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 0;
}
.section-content {
    margin-top: 20px;
}
.home-posts-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}
.home-posts-grid .post-block {
    padding: 15px;
    background: #ffffff;
    border-radius: 6px;
    transition: .5s all;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #f0f0f0;
}
.home-posts-grid .post-block:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1)
}
.home-posts-grid .post-thumb a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.home-posts-grid .post-thumb img {
    width: 80%;
}
.home-posts-grid .post-title {
    display: flex;
    margin-bottom: 5px;
}
.home-posts-grid .post-title a {
    color: #101010;
    text-decoration: none;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    line-height: 1.2 !important;
}
.home-posts-grid .post-excerpt {
    font-size: 12px;
}
.wp-block-latest-posts__list li {
    display: flex;
    align-items: center;
}
.wp-block-latest-posts__post-title {
    text-decoration: none;
    font-weight: 600;
}
.single-post-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.single-post-header h1 {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}
.single-post-header .single-thumb {
    width: 100px;
}

.single-post-header .download-links {
    width: 330px;
    margin-left: auto;
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.download-button {
    background-color: var(--accent);
    color: #ffffff;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    gap: 10px;
}
.download-button:hover {
    background-color: #101010;
    color: #ffffff;
}
.download-button svg {
    width: 28px;
}
.dl-info-txt {
    font-weight: 700;
}
.inside-right-sidebar .widget {
    padding: 20px;
    margin: 0;
}
.inside-right-sidebar .widget:first-child {
    margin: 0;
    padding-top: 20px;
    padding-bottom: 0;
}
.widget-title {
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}
.software-info-box {
    margin-top: 20px;
}
/**
* Stripped style table
*/
.software-info-table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: 1px solid #ddd;
}
.software-info-table th, .software-info-table td {
    text-align: center;
    padding: 8px;
}
.software-info-table tr:nth-child(even) {
    background-color: #f2f2f2;
}
.dracula-toggle-wrap.menu-item {
    margin-left: 15px;
    margin-right: 15px;
}
/**
* Resposnive
*/
@media (max-width: 1024px) {
    .home-posts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 768px) {
    .home-posts-grid {
        padding: 0px;
        grid-template-columns: repeat(3, 1fr);
    }
    .wp-block-latest-posts.wp-block-latest-posts__list li .wp-block-latest-posts__featured-image {
        margin-left: 0;
    }
    .home .site-content {
        padding: 10px;
    }
}
@media (max-width: 480px) {
    .single-post-header {
        flex-direction: column;
    }
    .single-post-header .download-links {
        margin: 0;
    }
    .home .site-main {
        margin-top: 0;
    }
    .section-header h3 {
        font-size: 20px;
    }
    .home-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .software-info-table th, .software-info-table td {
        font-size: 14px;
    }
    .dracula-toggle-wrap.menu-item {
        align-items: center;
        justify-content: center;
        margin-bottom: 15px;
    }
}