/* CSS for Difference Between Security Camera Recording and Live Video Monitoring Blog */

/* Content Wrap Styling */
.error404 #content-section .content-wrap,
.page-template-default #content-section .content-wrap,
.single-post #content-section .content-wrap {
    max-width: 772px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.content-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: 1009px;
    padding-left: 20px;
    padding-right: 20px;
}

/* Main Blog Title */
.content-inner h1 {
    font-size: 50px;
    line-height: 52px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #1C1C1C;
    font-weight: 400;
    margin-bottom: 30px;
}

/* City Name Headings */
.city-name {
    font-size: 32px;
    line-height: 36px;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #E32329;
    font-weight: 400;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Custom Unordered List with Red Triangles */
.content-inner ul {
    list-style: none;
    padding-left: 25px;
}
.content-inner ul li {
    position: relative;
}
.content-inner ul li::before {
    content: '▶';
    color: #E32329;
    position: absolute;
    left: -22px;
    font-size: 12px;
    top: 5px;
}

/* Description Text */
.blog-description {
    font-size: 16px;
    color: #666;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Blog Image */
#content-section .content-wrap .wp-post-image {
    border-radius: 0 100px;
    margin-bottom: 30px;
    max-width: 100%;
    height: auto;
}

/* Section Padding */
.section-padding-30 {
    margin-top: 20px;
}

/* Content Inner Adjustments */
.content-wrap .content-inner {
    border-left: none !important;
    padding-left: 0px !important;
}

@media (max-width: 767px) {
    #content-section .content-wrap .wp-post-image {
        width: 100%;
        height: auto;
        border-radius: 0 50px;
        margin-bottom: 10px;
    }
    .content-inner h1 {
        font-size: 30px;
        line-height: 40px;
    }
    .city-name {
        font-size: 24px;
        line-height: 28px;
    }
}

/* Key Takeaways - Theme Color #E32329 */
.key-takeaways{
    background:#fff5f5;
    border-left:5px solid #E32329;
    padding:25px;
    margin:40px 0;
    border-radius:8px;
}

.key-takeaways h2{
    margin-top:0;
    font-size: 24px;
    color: #1C1C1C;
}

.key-takeaways li{
    margin-bottom:12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: #666;
}

/* Comparison Flow */
.comparison-flow{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
    margin:40px 0;
}

.flow-column{
    background:#fff;
    border-radius:10px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    text-align:center;
    border-top: 5px solid #E32329;
}

.flow-column h3{
    margin-bottom:25px;
    font-size: 24px;
    color: #E32329;
}

.flow-box{
    background:#fff;
    border: 1px solid #1C1C1C;
    color: #1C1C1C;
    padding:16px;
    border-radius:8px;
    font-weight:600;
    font-family: 'Poppins', sans-serif;
}

.flow-arrow{
    font-size:28px;
    margin:12px 0;
    color:#E32329;
}

.red{
    background:#E32329;
    color:#fff;
    border: none;
}

.green{
    background:#1C1C1C;
    color:#fff;
    border: none;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    border-radius: 8px;
    overflow: hidden;
}

table thead {
    background-color: #E32329;
    color: #fff;
}

table th {
    font-weight: 600;
    padding: 16px;
    text-align: left;
    color: #fff;
    border: none;
}

table td {
    border-bottom: 1px solid #eee;
    padding: 16px;
    color: #1C1C1C;
    border-left: none;
    border-right: none;
}

table tr:last-child td {
    border-bottom: none;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #fcebeb;
}

