#post1 {
	width: 560px;
    padding: 20px;
    background-color: var(--designbgcolor_sec);
    margin: auto;
}

#post1 .inner {
	padding: 20px;
    background-color: var(--designbgcolorsec);
}

#post1 img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    outline: 1px solid var(--designbghighlight);
    outline-offset: 5px;
    object-fit: cover;
    float: left;
    margin: 10px;
}

#post1 .title {
    font-family: 'Quinn';
    font-size: 45px;
    text-align: center;
    color: var(--designbghighlight);
    line-height: 40px;
    text-decoration: underline 1px var(--designbgcolor_third);
    text-underline-offset: 5px;
    width: 400px;
    margin-left: 120px;
}

#post1 .subtitle {
	color: var(--designblockcolor);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    text-transform: uppercase;
    font-size: 7px;
    letter-spacing: 2px;
    text-align: justify;
    width: 355px;
    margin-left: 140px;
    font-style: italic;
    line-height: 15px;
    height: 50px;
    padding: 10px;
    overflow: hidden;
}

#post1 .postinfo {
	color: var(--designscrollone);
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 8px;
    letter-spacing: 2px;
    text-align: center;
    width: 495px;
    padding: 5px 10px;
    font-weight: 400;
    background-color: var(--designbghighlight);
    margin-top: 20px;
}

#post1 .posttxt {
    font-family: 'Work Sans';
    font-size: 12px;
    line-height: 22px;
    color: var(--designbgcolor);
    text-align: justify;
    width: 475px;
    padding: 20px;
}

#post2 {
    width: 550px;
    padding: 20px;
    background-color: var(--designbgcolor_sec);
    margin: auto;
}

#post2 .postinfo {
	padding: 10px 0px 2px;
    display: flex;
    flex-wrap: nowrap;
    gap: 5px;
    justify-content: right;
	margin-right: -5px;
}

#post2 span {
    background-color: var(--designbgcolorsec);
    padding: 0px 10px;
    font-family: 'Work Sans';
    font-size: 9px;
    letter-spacing: 1px;
    color: var(--designgradienttwo);
    text-transform: uppercase;
    font-weight: 600;
}

#post2 .inner {
    padding: 20px;
    background-color: var(--designbgcolorsec);
    display: flex;
    flex-wrap: nowrap;
}

#post2 .strip {
	width: 150px;
    padding: 10px;
    border-right: 1px solid var(--designbgcolor_third);
}

#post2 .title {
    font-family: 'Work Sans';
    font-size: 20px;
    text-align: center;
    color: var(--designblockcolor);
    line-height: 30px;
    margin-bottom: 5px;
    width: 120px;
}

#post2 .subtitle {
    color: var(--designgradientone);
    font-family: 'Montserrat';
    text-transform: uppercase;
    font-size: 7px;
    letter-spacing: 2px;
    text-align: justify;
    font-style: italic;
    line-height: 15px;
    font-weight: 600;
}

#post2 .imgc {
	height: 100px;
    width: 100px;
    margin: 10px;
    position: relative;
    overflow: hidden;
}

#post2 .imgc::after {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
	outline: 1px solid var(--designbgcolorsec);
    outline-offset: -10px;
    top: 0;
    z-index: 2;
}

#post2 .imgc::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom right, var(--designgradientone), var(--designgradienttwo));
    position: absolute;
    top: 0;
    mix-blend-mode: multiply;
    z-index: 1;
}

#post2 img {
	width: 100%;
	height: 100%;
	-webkit-filter: grayscale(100%);
    filter: grayscale(100%);
	opacity: 0.4;
	object-fit: cover;
}

#post2 .text {
	width: 400px;
    padding: 20px;
    font-family: 'Work Sans';
    font-size: 12px;
    line-height: 25px;
    color: var(--designbgcolor);
    text-align: justify;
    letter-spacing: 0.5px;
}