/*
Theme Name: Marketcircle Version 6.3.1
Version: 6.3.1
Author: Marketcircle
Description: Marketcircle theme for 2022. Uses corona styles.
Author URI: https://www.marketcircle.com
Tags: corona
*/

:root {
  --black: #000000;
  --white: #ffffff;
  --grey: #656565;
  --light-grey: #777777;
  --blue: #0095e6;
}

.main {
  margin-top: 80px;
  color: var(--black);
}

.main p,
.main p + p {
  font-size: 1.8rem;
  line-height: 2.8rem;;
}

.main .read-more {
  margin-top: 23px;
  font-size: 1.5rem;
  font-weight: 500;
}

.main .heading-1 {
  font-size: 4.8rem;
  color: inherit;
  line-height: normal;
}

.main .heading-1:first-child {
  margin-top: 0;
}

.main .heading-2 {
  font-size: 2.4rem;
  line-height: 3rem;
  color: inherit;
  margin: 0 0 15px;
}

.main .heading-2--no-margin {
  margin: 0;
}

.main .heading-3 {
  font-size: 2.1rem;
  line-height: 2.8rem;
  color: var(--grey);
  margin: 0;
}

.main .heading-3 + .heading-2 {
  margin-top: 22px;
}

.main .heading-4 {
  color: var(--grey);
  font-size: 1.5rem;
  line-height: normal;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 0 5px;
}

.main .small-text {
  color: var(--grey);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 0;
}

.main .articles-heading {
    margin-bottom: 50px;
}

.featured-article {
  margin-bottom: 40px;
}

@media (min-width: 700px) {
  .featured-article {
    margin-bottom: 70px;
  }
}

.featured-article__image {
  margin-bottom: 10px;
  width: 100%;
  height: auto;
}

@media (min-width: 700px) {
  .featured-article__image {
    margin-bottom: 0;
  }
}

.search-container {
  display: inline-block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 6px;
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  margin-bottom: 20px;
  max-width: 275px;
}

.search-container + .heading-3 {
  margin-top: 30px;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-field {
  border: 1px solid var(--light-grey);
  border-right: 0;
  font-size: 1.2rem;
  padding: 6px 10px;
  flex: 1;
  height: 34px;
}

.search-field::placeholder {
  color: var(--light-grey);
  font-weight: 500;
}

.search-field:focus {
  outline: 0;
  border: 1px solid var(--blue);
  border-right: 0;
}

.search-button {
  height: 34px;
  width: 34px;
  background-color: var(--blue);
  border: 0;
  background-image: url('images/search.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.row {
	display: flex;
	flex-wrap: wrap;
}

.article-row {
  margin-top: 50px;
}

.post-card {
	display: flex;
	flex-direction: column;
  color: inherit;
  text-align: center;
  width: 100%;
  height: calc(100% - 35px);
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 35px;
  transition: box-shadow 150ms, filter 150ms, transform 150ms;
  text-decoration: none;
}

.post-card__thumbnail-container {
  overflow: hidden;
}

.post-card__thumbnail {
  width: 100%;
  height: auto;
}

@media (min-width: 700px) {
  .post-card__thumbnail-container {
    height: 185px;
  }

  .post-card__thumbnail {
    width: auto;
    max-width: none;
    height: 100%;
    margin-left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 860px) {
  .post-card__thumbnail-container {
    height: 154px;
  }
}

@media (min-width: 1281px) {
  .post-card__thumbnail-container {
    height: 188px;
  }
}

.post-card:hover {
  color: var(--black);
  transform: translateY(-1px);
  box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.post-card__content {
  display: flex;
	flex: 1;
	flex-direction: column;
  padding: 15px;
}

.post-card__title {
	flex: 1;
  font-size: 2.2rem;
  line-height: 2.8rem;
  margin: 0 0 10px;
	min-height: 170px;
}

.post-card__category {
  color: var(--blue);
}

.main .post-card__date {
  font-size: 1.5rem;
  line-height: 2.2rem;
  margin: 0;
}

.page-nav {
  text-align: center;
  margin-top: 40px;
}

.page-nav__button {
  display: inline-block;
}

.page-nav__button + .page-nav__button {
  margin-left: 40px;
}

.page-nav__button a {
  position: relative;
  display: block;
  text-transform: uppercase;
}

.page-nav__button a:hover {
  color: var(--blue);
  filter: brightness(0.6);
}

.page-nav__button a::after {
  content: '';
  display: block;
  position: absolute;
  top: 1px;
  width: 6px;
  height: 100%;
  background-image: url('images/chevron.svg');
  background-repeat: no-repeat;
  background-position: center;
}

.page-nav__button--left a {
  padding-left: 12px;
}

.page-nav__button--left a::after {
  left: 0;
  transform: rotate(180deg);
}

.page-nav__button--right a {
  padding-right: 12px;
}

.page-nav__button--right a::after {
  right: 0;
}

.link-list {
  list-style: none;
  padding: 0;
}

.link-list:last-child {
  margin-bottom: 50px;
}

@media (min-width: 860px) {
  .link-list:last-child {
    margin-bottom: 0;
  }
}

.link-list li {
  font-size: 1.8rem;
  line-height: 2.1rem;
  margin-bottom: 15px;
}

.link-list + .heading-3 {
  margin-top: 30px;
}

.heading-3 + .link-list {
  margin-top: 20px;
}

.signup-inline {
  text-align: center;
  margin-top: 20px;
}

.signup-inline.form-inline .form-control {
  vertical-align: top;
  height: 52px;
  width: 100%;
}

@media (min-width: 700px) {
  .signup-inline.form-inline .form-control {
    width: 270px;
  }
}

.signup-inline.form-inline .form-group .button {
  margin-top: 25px;
  width: 100%;
}

@media (min-width: 700px) {
  .signup-inline.form-inline .form-group .button {
    margin-top: 0;
    margin-left: 25px;
    width: 270px;
  }
}

.signup-inline .signup-inline__response {
	margin-top: 25px;
}

.heading-1 + .related-articles {
  margin-top: 30px;
}

.blog-post-details {
  font-weight: 500;
  color: var(--grey);
}

.blog-post-details__divider {
  margin: 0 3px;
}

.blog-post-socials {
  margin-top: 20px;
  display: flex;
  align-items: top;
}

.blog-post-socials__link {
  width: 30px;
  height: 30px;
  margin-left: 8px;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

.blog-post-socials__link:hover {
  filter: none;
}

/* Force share button iframes to be the same size
 * as our icons.
 */
.blog-post-socials iframe {
  height: 30px !important;
  width: 30px !important;
  opacity: 0;
}

.blog-post-socials__link:first-child {
  margin-left: 0;
}

.blog-post-socials__link--twitter {
  background-image: url('images/twitter.svg');
  filter: grayscale(1);
}

/* Scale the twitter iframe to make the clickable
 * area the same size as our icon.
 */
.blog-post-socials__link--twitter iframe {
  transform: scale(3);
}

.blog-post-socials__link--facebook {
  background-image: url('images/facebook.svg');
  filter: grayscale(1) brightness(1.81);
}

.blog-post-socials__link--email {
  background-image: url('images/mail.svg');
  filter: grayscale(1) brightness(1.64);
}

.blog-post-featured-image {
  display: block;
  margin: 30px auto;
}

.comments-wrapper {
  margin-top: 130px;
}

/* Blog post body ---------------- */

.blog-post-body {
  margin-top: 30px;
}

.blog-post-body p,
.blog-post-body ol,
.blog-post-body ul {
  font-size: 1.8rem;
  line-height: 2.8rem;
}

.blog-post-body p + p,
.blog-post-body ol + p,
.blog-post-body ul + p {
  margin-top: 35px;
}

.blog-post-body h2 {
  font-size: 4.5rem;
  font-weight: normal;
  margin-top: 40px;
}

.blog-post-body .wp-block-image + h2,
.blog-post-body img + h2,
.blog-post-body p + h2,
.blog-post-body ol + h2,
.blog-post-body ul + h2,
.blog-post-body .wp-block-image + h3,
.blog-post-body img + h3,
.blog-post-body p + h3,
.blog-post-body ol + h3,
.blog-post-body ul + h3 {
  margin-top: 25px;
}

.blog-post-body p + figure,
.blog-post-body ol + figure,
.blog-post-body ul + figure,
.blog-post-body h2 + figure,
.blog-post-body h2 + p,
.blog-post-body h3 + figure,
.blog-post-body figure + p,
.blog-post-body figure + ol,
.blog-post-body figure + ul {
  margin-top: 25px;
}

.blog-post-body blockquote {
  border-left: 1px solid #aaaaaa;
  padding-left: 20px;
  margin: 30px 0 30px 5px;
}

.wp-block-quote em,
.wp-block-quote cite {
  font-style: normal;
}

.wp-block-image + p {
  margin-top: 25px;
}

/* Comments ---------------- */

.commentlist {
  list-style: none;
  padding: 0;
}

.commentlist .comment-author {
  display: flex;
  align-items: center;
}

.commentlist .comment-author .avatar {
  border-radius: 50%;
}

.commentlist .comment-author cite {
  margin-left: 10px;
  font-weight: 600;
  font-style: normal;
}

.commentlist .comment {
  margin-bottom: 40px;
  margin-left: 42px;
}

.commentlist .comment > p + p {
  margin-top: 10px;
}

/* Alignment Classes ------------------------- */
/* Taken from twentytwenty theme */

.blog-post-body figure {
	display: block;
	margin: 0;
}

.blog-post-body iframe {
	display: block;
	max-width: 100%;
}

.blog-post-body video {
	display: block;
}

.blog-post-body svg,
.blog-post-body img,
.blog-post-body embed,
.blog-post-body object {
	display: block;
	height: auto;
	max-width: 100%;
}

.entry-content > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide) {
	max-width: 58rem;
	width: 100%;
}

.alignnone,
.aligncenter,
.alignleft,
.alignright,
.alignwide {
	margin-top: 4rem;
	margin-right: auto;
	margin-bottom: 4rem;
	margin-left: auto;
}

[class*="__inner-container"] > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright) {
	margin-left: auto;
	margin-right: auto;
}

/* Full */

.alignfull {
	margin-top: 5rem;
	margin-right: auto;
	margin-bottom: 5rem;
	margin-left: auto;
	max-width: 100vw;
	position: relative;
	width: 100%;
}

[class*="__inner-container"] > .alignfull {
	max-width: 100%;
}

/* Wide */

.alignwide {
	max-width: 120rem;
	position: relative;
	width: calc(100% - 4rem);
}

[class*="__inner-container"] > .alignwide {
	width: 100%;
}

/* Center */

.aligncenter,
.aligncenter img {
	margin-left: auto;
	margin-right: auto;
}

/* Left and right */

.alignleft,
.alignright {
	max-width: 50%;
}

.alignleft {

	/*rtl:ignore*/
	float: left;
	margin: 0.3rem 2rem 2rem 2rem;
}

.alignright {

	/*rtl:ignore*/
	float: right;
	margin: 0.3rem 2rem 2rem 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignleft,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignleft {

	/*rtl:ignore*/
	margin-left: 2rem;
}

[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > p .alignright,
[class*="wp-block"].alignfull:not(.has-background) [class*="__inner-container"] > .wp-block-image .alignright {

	/*rtl:ignore*/
	margin-right: 2rem;
}


/* Top Posts & Pages Jetpack Widget */

.jetpack_top_posts_widget .widgettitle {
  font-size: 2.1rem;
  line-height: 2.8rem;
  font-weight: 700;
  color: var(--grey);
  margin: 0;
}

.search-container + .jetpack_top_posts_widget .widgettitle {
  margin-top: 30px;
}

.jetpack_top_posts_widget ul {
  list-style: none;
  padding: 0;
}

.jetpack_top_posts_widget ul:last-child {
  margin-bottom: 50px;
}

@media (min-width: 860px) {
  .jetpack_top_posts_widget ul:last-child {
    margin-bottom: 0;
  }
}

.jetpack_top_posts_widget ul li {
  font-size: 1.8rem;
  line-height: 2.1rem;
  margin-bottom: 15px;
}

.jetpack_top_posts_widget + .heading-3 {
  margin-top: 30px;
}

.jetpack_top_posts_widget .widgettitle + ul {
  margin-top: 20px;
}

