/*  heading-image */
    .heading-image, .audio, .video {
        margin-bottom: 2rem;
    }

    .heading-image img {
        max-width: 100%;
    }

/*  header */
    main.read header .info {
        margin-bottom: 2rem;
        text-align: center;
    }

    main.read header time {
        font-family: var(--font-gothic);
        font-weight: 400;
        font-size: 0.8em;
        color: var(--gray-500);
        line-height: 1;
    }

    main.read header .name {
        color: var(--gray-600);
        font-size: 0.8em;
        font-weight: 500;
    }

/*	read */
	main.read h1 {
		font-family: var(--font-title);
		margin: 1rem;
	}

    main.read article, .ck-content {
    	font-family: var(--font-serif);
        padding: 1rem;
        font-size: 1.25rem;
        line-height: 1.5;
        word-break: keep-all;
    }

    /*main.read article:not(.no-indent) p, .ck-content p  {
        text-indent: 1rem
    }*/

    .ck-content h3 {
        margin: 2rem 0;
        font-weight: 900;
    }

    .ck-content h4 {
        margin: 2rem 0;
        font-weight: 700;
        color: var(--orange);
    }

    main.read article img,
    main.read article video {
        max-width: 100%;
        height: auto !important;
        text-align: center;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    main.read article figure.image,
    main.read figure.video,
    main.read figure.audio,
    figure figcaption {
        text-align: center;
        font-family: var(--font-gothic);
        font-size: 0.8rem;
        font-weight: 300;
    }

    article blockquote,
    .ck-content blockquote {
        color: var(--cyan);
        font-family: var(--font-handwriting);
        font-size: 1.5rem;
        line-height: 1.5;
        padding: 1rem;
        background-color: rgba(23, 162, 184, 0.1);
        border-radius: 0.5rem;
    }

    article blockquote p:last-child,
    .ck-content blockquote p:last-child {
        margin-bottom: 0;
    }

    main.read article blockquote,
    main.read article blockquote p,
    .ck-content blockquote,
    .ck-content blockquote p {
        text-indent: 0 !important;
    }

    .ck-content blockquote {
        border-left: none !important;
    }

    main.read article hr,
    .ck-content hr {
        width: 30px;
        margin: 2rem auto;
        background-color: var(--red-dark);
        opacity: 1;
    }

    main.read article a {
        word-break: break-all;
    }

    main.read article figure.table {
        width: auto
    }

    main.read article figure.table table {
        word-break: break-all;
    }

    main.read article figure.table table th,
    main.read article figure.table table td {
        vertical-align: middle;
    }

    main.read article figure.table table p {
        margin-bottom: 0
    }

    @media (min-width: 768px) {
        main.read article .img-col-2 {
            display: flex;
            align-items: stretch;
        }

        main.read article .img-col-2 img {
            object-fit: cover;
            width: 100%;
            max-height: 480px;
        }
    }

/*  files */
    section.files {
        margin: 2rem;
    }

    section.files .files-list {
        padding-top: 0;
    }

/*  nav.prev-next */
    nav.prev-next {
        margin: 0;
        margin-top: 3rem;
        border-top: solid 2px var(--gray-900);
    }

    nav.prev-next ul {
        list-style: none;
        position: relative;
        margin: 0;
        padding: 0.5rem 0;
        font-size: 1rem;
    }

    nav.prev-next li {
        display: flex;
        align-items: center;
        padding: 1rem 0;
        line-height: 1;
        word-break: break-all;
    }

    nav.prev-next li label {
        color: var(--red-dark);
        margin: 0 .75rem;
    }

    nav.prev-next li:first-child {
        margin-right: 2.5rem;
    }

    nav.prev-next li:last-child {
        margin-left: 2.5rem;
        justify-content: flex-end;
    }

    nav.prev-next li:last-child label {
        order: 1;
    }

    nav.prev-next li a {
        color: var(--black);
    }

    nav.prev-next li a:hover {
        transition: color .3s ease-out;
        color: var(--red-dark)
    }

    @media (min-width: 768px) {
        nav.prev-next ul {
            display: flex;
            justify-content: space-between;
        }
    }
