/*
 Theme Name:   Simple Operations Blog Child
 Theme URI:    https://example.com
 Description:  Child theme for Simple Operations Blog
 Author:       Your Name
 Template:     simpleoperationsblog
 Version:      1.0.0
*/

/* ===== Child Theme Custom CSS Starts Here ===== */

body {
    /* Add your custom styles here */
}

/* Full Width Layout */
.hub-fullwidth{
    width: 100%;
    background: #fff !important;
    width: 100%;
}
.hub-fullwidth .hub-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0;
}
.hub-fullwidth .widget {
  border: none;
  box-shadow: none;
  background: none;
}

.hub-fullwidth h2, .hub-fullwidth .panel-grid-cell .widget-title {
  font-size: 34px;
  line-height: 44px;
  color: rgba(82, 196, 183, 1);
  max-width: 840px;
  margin-bottom: 50px;
  font-weight: 700;
}
.hub-fullwidth .rtld h2, .hub-fullwidth .rtld .panel-grid-cell .widget-title {
    text-align: right; 
}
.hub-fullwidth h2 span, .hub-fullwidth .panel-grid-cell .widget-title span{
    color: rgba(69, 69, 69, 1);
    font-weight: 500;
}

.hub-fullwidth .guide h2 span, .hub-fullwidth .guide .panel-grid-cell .widget-title span{
    font-weight: 700;
}
/* Footer Blog Section */
.hub-related-posts {
  padding: 60px 40px;
  background: #fff;
  max-width: 1280px;
  margin: auto;
}

.hub-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.hub-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform .3s ease;
    display: flex;
    flex-direction: column;
}

.hub-card:hover {
    transform: translateY(-6px);
}

.hub-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.hub-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hub-card h3 {
    font-size: 16px;
    margin-bottom: 15px;
}

.hub-card p {
    flex-grow: 1;
    color: #555;
    font-size: 15px;
}

.hub-card a.read-more {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #42b8a6;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  max-width: 115px;
  text-decoration: underline;
}
.hub-card a.read-more:hover {
    background: #379f90;
  text-decoration: none;
}
.hub-fullwidth ul li{
    background-image: url( 'assets/images/list-bg.png' );
}
.hub-fullwidth ul li {
  background-image: url( 'assets/images/list-bg.png' );
  background-repeat: no-repeat;
  background-position: left;
  padding-left: 27px;
  margin-bottom: 6px;
  line-height: 2.2;
  padding-bottom: 0px;
  padding-top: 0px;
  font-size: 14px;
  color: rgba(0, 0, 0, 1);
  font-weight: 700;
  border: none;
}

.hub-fullwidth .rtld ul li {
  background-position: right;
  padding-right: 50px;
  margin-bottom: 6px;
}
.rtld .textwidget {
  text-align: right;
}
.hub-fullwidth .big-list ul li{
    font-weight: 700;
    font-size: 16px !important;
    line-height: 44px !important;
}
.hub-fullwidth .sow-image-container{
    position: relative;
}
.hub-fullwidth .so-widget-image{
    z-index: 11;
}
.hub-fullwidth .sow-image-container::after {
  position: absolute;
  content: '';
  width: 328px;
  background: rgb(82, 196, 183);
  height: 90px;
  right: -30px;
  bottom: 0;
  z-index: 1;
  border-radius: 20px;
}
.hub-fullwidth .rtld .sow-image-container::after {
  left: -30px;
  right: 0;
}
.hub-fullwidth .widget a{
  color: rgba(0, 0, 0, 1);
}
.hub-fullwidth p{
    font-size: 14px;
    color: rgba(0, 0, 0, 1);
}

/* Responsive */
@media (max-width: 1024px) {
    .hub-post-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hub-post-grid {
        grid-template-columns: 1fr;
    }
}