/** Added by @stronenv on 2022.12.07 - to avoid overlap **/
.wp-block-image.case-study-logo {
	display: block;
	max-width: 50%;
}

/** Added by @stronenv on 2022.12.07 - to avoid excessive scaling on mobile **/
@media screen and (max-width: 540px) {
	.plus-plans .plans-mobile .app-screenshots {
		margin-top:20px
	}
	.plus-plans .plans-mobile .app-screenshots > .wp-block-image {
		left: 0;
    right: auto;
		height: auto;
    max-height: 100%;
		bottom: 0;
	}
	.plus-plans .plans-mobile .app-screenshots > .wp-block-image:last-child {
    right: 0;
    left: auto;
	}
}


/* September Banner. Added by @emilylaguna on 2023-08-31 */
/* Show only on Pocket Casts Blaze page */

/* Show only on Pocket Casts Blaze page */
.page-id-367 .september-promotion-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-id-367 .navbar-items {
  padding-top: 50px;
}

.september-promotion-container {
  width: 100%;
  height: 50px;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(115deg, #F43769 0%, #FB8746 75%);
  overflow: hidden;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
}
.september-promotion-container a {
	position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
	   /* Hide the text. */
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.september-promotion-container .promotion-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow:hidden;
  max-height: 25px;
  overflow:hidden;
}
.september-promotion-container .promotion-item {
  display: flex;
  align-items: center;
}

.september-promotion-container .promotion-item p {
  flex-shrink: 0;
  margin-right: 16px;
  margin-left: 16px;
  font-weight: 500;
  font-size: 16px;
}
.september-promotion-container .promotion-item img {
  height: 16px;
  width: 16px;
  display: inline-block;
}
@media only screen and (max-width: 600px) {
  .september-promotion-container .promotion-item p {
      font-size: 14px;
 }

 /* Hide all the items but the first on smaller devices */
  .september-promotion-container .promotion-item {
      display: none;
 }
  .september-promotion-container .promotion-item.first {
      display: flex;
 }
}