.heroBlogInner{
	min-height: 100vh;
	padding-block: 10rem;
	position: relative;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	border-bottom-right-radius: 4px;
	border-bottom-left-radius: 4px;
}

.heroBlogInner:before{
	position: absolute;
	content:"";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
}


.heroBlogInner h1{
	position: relative;
}
/*********************
START: SINGLE BLOG
*********************/
/* .single {
    padding-block: 7rem;
}
 */
.single--title,
.single--content {
    width: 100%;
    max-width: 1100px;
    margin-inline: auto;
}

.single--title .indexText {
    width: 70%;
    margin-block: 2.5rem 2rem;
}

.single--title p,
.single--content p {
    color: var(--gray-secondary);
    font-weight: 400;
    font-style: normal;
    margin-block-end: 2rem;
    line-height: var(--line-height150);
}

.single--content {
    padding: 2.5rem;
	margin-block-start: -7rem;
    position: relative;
    background-color: var(--baseLight-color);
    border-radius: var(--border-radius-16);
}


/* img */
.single img,
.single video {
    width: initial;
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-20);
    margin-block-end: 2rem;
    margin-inline: auto;
    display: block;
}

.single img.alignright {
    float: right;
    margin: 0 0 1em 1em;
}

.single img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
}

.single .alignright {
    float: right;
}

.single .alignleft {
    float: left;
}

.single img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}


/*********************
END: SINGLE BLOG
*********************/




/*********************
START: BLOG
*********************/
body.single .blog{
	margin-block-start: 5rem;
	padding-block: 5rem;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
	background: var(--baseLight-color);
}

body.single .blog ul{
	margin-block-start: 2rem;
}

/*********************
END: BLOG
*********************/


/***************************************** SINGLE AGENT PAGE *****************************************/

/*********************
START: SINGLE AGENTS
*********************/
.singleAgent {
    padding-block: 10rem;
}

.singleAgent--content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.singleAgent--profile {
    width: 65%;
}

.singleAgent--profile>div {
    margin-block-end: 2.5rem;
    display: flex;
    column-gap: 1rem;
}

.singleAgent--profile__name {
    display: flex;
    row-gap: 1.5rem;
    flex-direction: column;
}

.singleAgent--profile__name span {
    text-transform: capitalize;
    font-size: var(--text-sm);
}

.singleAgent--profile__name ul {
    margin-block-start: auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 1rem;
    column-gap: 1.25rem;
}

.singleAgent--profile__image {
    width: 30%;
}

.singleAgent--profile__image img {
    width: 100%;
    border-radius: var(--border-radius-4);
}

.singleAgent--features {
    width: 30%;
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
}

.singleAgent--features ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    column-gap: 0.5rem;
    margin-block-start: 1rem;
}

.singleAgent--features .singleAgent--features__specialize ul li {
    text-transform: capitalize;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius-4);
    border: 1px solid var(--border-color);
}

/*********************
END: SINGLE AGENTS
*********************/

/*********************
START: MEDIA
*********************/
@media screen and (min-width: 1440px) {

    .single--title p,
    .single--content p {
        font-size: var(--text-xl);
    }
}

@media screen and (min-width: 1320px) and (max-width: 1439px) {

    .single--title p,
    .single--content p {
        font-size: var(--text-xl);
    }
}

@media screen and (max-width: 1319px) {

    .single--title p,
    .single--content p {
        font-size: var(--text-lg);
    }
}

@media screen and (max-width: 1200px) {
    .single--title .indexText {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {
    .singleAgent--content {
        row-gap: 2rem;
        flex-direction: column;
    }

    .singleAgent--profile,
    .singleAgent--features {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {

    .single--title p,
    .single--content p {
        font-size: var(--text-base);
    }

    .blog ul li {
        width: 48.5%;
    }
}

@media screen and (max-width: 576px) {
    .blog ul li {
        width: 100%;
    }

    .singleAgent--profile>div {
        row-gap: 1.5rem;
        flex-direction: column;
    }

    .singleAgent--profile__image {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 425px) {}

@media screen and (max-width: 375px) {}

/*********************
END: MEDIA
*********************/