/* Content Right and Grid Layout Styles */
@media (max-width: 768px) {
    DIV.content_right {
        width: 100%;
        float: none;
        padding: 10px;
        background: none;
        box-sizing: border-box;
        overflow: hidden;
        margin-top: 20px;
        padding-bottom: 5px;
    }
    
    .grid-layout {
        display: block !important;
        width: 100%;
        overflow: hidden;
    }
    
    .grid-layout > div {
        display: block;
        width: 100% !important;
        margin-bottom: 20px;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .grid-layout img {
        width: 100%;
        height: auto;
        max-width: 100%;
        display: block;
    }
    
    .grid-layout > div[align="center"] {
        width: 100% !important;
    }
    
    .grid-layout > div[align="center"] > div {
        display: inline-block !important;
        width: 48% !important;
        margin-bottom: 0;
        vertical-align: top;
        box-sizing: border-box;
    }
    
    /* Title rows */
    .grid-layout > div[align="center"] > div:nth-child(1),
    .grid-layout > div[align="center"] > div:nth-child(2) {
        margin-bottom: 5px;
    }
    
    /* Image rows */
    .grid-layout > div[align="center"] > div:nth-child(3),
    .grid-layout > div[align="center"] > div:nth-child(4) {
        margin-bottom: 5px;
    }
    
    /* UL list rows */
    .grid-layout > div[align="center"] > div:nth-child(5),
    .grid-layout > div[align="center"] > div:nth-child(6) {
        margin-bottom: 10px;
    }
    
    /* Second set titles */
    .grid-layout > div[align="center"] > div:nth-child(7),
    .grid-layout > div[align="center"] > div:nth-child(8) {
        margin-bottom: 5px;
    }
    
    /* Second set images */
    .grid-layout > div[align="center"] > div:nth-child(9),
    .grid-layout > div[align="center"] > div:nth-child(10) {
        margin-bottom: 5px;
    }
    
    /* Second set UL lists */
    .grid-layout > div[align="center"] > div:nth-child(11),
    .grid-layout > div[align="center"] > div:nth-child(12) {
        margin-bottom: 10px;
    }
    
    /* Third set titles */
    .grid-layout > div[align="center"] > div:nth-child(13),
    .grid-layout > div[align="center"] > div:nth-child(14) {
        margin-bottom: 5px;
    }
    
    /* Third set images */
    .grid-layout > div[align="center"] > div:nth-child(15),
    .grid-layout > div[align="center"] > div:nth-child(16) {
        margin-bottom: 5px;
    }
    
    /* Third set UL lists - minimal bottom margin */
    .grid-layout > div[align="center"] > div:nth-child(17),
    .grid-layout > div[align="center"] > div:nth-child(18) {
        margin-bottom: 0;
    }
    
    .grid-layout > div[align="center"] > div:nth-child(odd) {
        margin-right: 2%;
    }
    
    .grid-layout > div[align="center"] > div[align="left"] {
        padding-left: 0 !important;
        text-align: left;
    }
    
    .grid-layout > div[align="center"] > div[align="left"] ul {
        padding-left: 15px !important;
        margin-left: 0 !important;
        margin-top: 0;
        margin-bottom: 0;
    }
}