/*
CTC Separate Stylesheet
Updated: 2024-06-14 14:35:57
Theme Name: Twenty Fifteen Child
Theme URI: https://wordpress.org/themes/twentyfifteen/
Template: twentyfifteen
Author: the WordPress team
Author URI: https://wordpress.org/
Description: Our 2015 default theme is clean, blog-focused, and designed for clarity. Twenty Fifteen's simple, straightforward typography is readable on a wide variety of screen sizes, and suitable for multiple languages. We designed it using a mobile-first approach, meaning your content takes center-stage, regardless of whether your visitors arrive by smartphone, tablet, laptop, or desktop computer.
Tags: blog,two-columns,left-sidebar,accessibility-ready,custom-background,custom-colors,custom-header,custom-logo,custom-menu,editor-style,featured-images,microformats,post-formats,rtl-language-support,sticky-post,threaded-comments,translation-ready,block-patterns
Version: 3.7.1718375757
*/

.entry-title {
    font-size: 4.5rem;
}

@media screen and (max-width: 46.24em) {
	.post-thumbnail img {
		display: none;
	}
}

.thumbcontainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px; /* Adds spacing between the image and text */
  flex-wrap: wrap; /* Ensures content wraps on smaller screens */
	margin-top: -0.5em;
	font-size: 90%;
}

.thumbimage img {
  max-width: 100%;
  height: auto;
  display: block;
	padding: 0em;
	margin: 0em;
}

.text-block {
  flex: 1; /* Allows the text block to take up remaining space */
  
}
	
.text-block h4 {
	margin-top: 1em;
	margin-bottom: -0.5em;
	font-size: 100%;
}

.text-block p {
	font-style: italic;
}

@media (max-width: 768px) {
  .thumbcontainer {
    flex-direction: column; /* Stacks content vertically */
    align-items: center; /* Centers the text block under the image */
		margin-top: 1.5em;
  }

	.text-block {
		margin-top: -0.5em;
	}
}


/******************************
* PDF display for teacher resources page
******************************/
.teacher-pdf-card {
    position: relative;
    display: inline-block;
    line-height: 0;
    max-width: 100%;
	margin-top: -1em;
	margin-bottom: -1em;
}

.teacher-pdf-card img {
    display: block;
    max-width: 100%;
    height: auto;
}

.teacher-pdf-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55); /* semitransparent gray/black */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    transition: opacity .2s ease-in-out;
    pointer-events: none; /* don’t block clicks when hidden */
 }

.teacher-pdf-card:hover .teacher-pdf-overlay,
.teacher-pdf-card:focus-within .teacher-pdf-overlay {
    opacity: 1;
    pointer-events: auto;
}

 @media (hover: none) {
.teacher-pdf-overlay {
      opacity: 1;
      pointer-events: auto;
   }
}

.teacher-pdf-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.teacher-pdf-btn {
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 8px;
    background: white;
    color: black;
    font-weight: 700;
    letter-spacing: .2px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: transform .12s ease-in-out, background .12s ease-in-out, color .12s ease-in-out;
}

.teacher-pdf-btn:hover,
.teacher-pdf-btn:focus-visible {
    transform: translateY(-1px);
    outline: none;
}

.teacher-pdf-btn--solid {
    background: #FFCC00;
    color: #000;
}

.teacher-pdf-btn:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 204, 0, .35);
}

.teacher-pdf-btn .pdf-download-icon {
  width: 1.1em;
  height: 1.1em;
  margin-right: 8px;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: -2px;
}
