 /* Outer box */
    .editorial-box {
        max-width:1000px;
        margin: auto;
        padding: 15px;
        background: #fff;
       border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
    }

    /* Image at top-left */
    .editorial-image {
        float: left;
        width: 120px;               /* adjust size */
       // height: auto;
        padding:20px 20px;
        margin-bottom: 10px;
    }

    /* Main text */
    .editorial-text {
        text-align: justify;         /* FULL JUSTIFICATION */
        font-size: 13px;
		/*line-height: 1.6;*/
    }

    /* Headline centered */
    .editorial-title {
        text-align: center;
        font-weight: bold;
        font-size: 22px;
        margin-bottom: 20px;
    }

    /* Mobile Responsive */
    @media (max-width: 100%) {
        .editorial-image {
            float: none;
            display: block;
            margin: 0 auto 15px auto;
            width: 100%;
        }
        .editorial-text {
            font-size: 16px;
        }
    }