/*
 Theme Name:   Dream Diagnosis
 Theme URI:    http://example.com/twenty-fifteen-child/
 Description:  Twenty Fifteen Child Theme
 Author:       John Doe
 Author URI:   http://example.com
 Template:     chaplin
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  chaplinchild
*/

#site-footer {
  background-color: rgba(0, 0, 0, 0.02);
  border-width: 1px;
  border-style: solid;
}
.footer-widgets-outer-wrapper {
  border: none;
  margin-bottom: 4rem;
  margin-top: 8rem;
  padding-top: 0;
}

.table-dictionary table td {
  border: none;
  padding: 0;
}
.table-dictionary table td a {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.table-dictionary table td a:hover {
  opacity: 0.5;
}

.wp-block-media-text.media-text-common {
  margin-top: 0;
  margin-bottom: 0
}

.wp-block-columns.columns-home {
  justify-content: space-between;
}

.widgettitle {
  font-size: 2.4rem;
	margin: 0 0 2.4rem;
}

/* Alphabet Index Grid */

.alphabet-index {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 100%;
}

@media (max-width: 480px) {
  .alphabet-index {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .alphabet-index {
    grid-template-columns: repeat(5, 1fr);
  }
}



.alphabet-index-item {
  align-items: center;
  background-color: #333333;
  border-radius: 0.75rem;
  color: #ffffff;
  display: flex;
  font-size: 3rem;
  font-weight: 700;
  height: 4rem;
  justify-content: center;
  padding: 3rem;
  text-decoration: none;
  width: 4rem;
}

/* Featured Posts Grid */

.featured-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .featured-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .featured-posts-grid {
    grid-template-columns: 1fr;
  }
}

.featured-posts-item {

}

.featured-posts-item-image {
  display: block;
  height: auto;
  overflow: hidden;
  width: 100%;
  margin-bottom: 1rem;
}

.featured-posts-item-title {
  margin: 1rem 0;
  text-decoration: none;
}
