/*
Theme Name: Newspaper-Child
Theme URI: https://example.com/
Description: A generic WordPress child theme. Replace the Template value with the exact folder name of your parent theme.
Author: Your Name
Author URI: https://example.com/
Template: Newspaper
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: generic-child-theme
*/

/* Add your custom CSS below this line. */

/* Post ratings */
.custom-post-rating {
    display: flex;
    gap: 4px;
    align-items: center;
}

.custom-post-rating__icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* rating and date column of posts */
.td-custom-row {
    display: flex !important;
    align-items: flex-start !important;
}

.td-custom-col-right .wpb_wrapper,
.td-custom-col-left .wpb_wrapper {
    display: flex !important;
    align-items: center !important;
    min-height: 32px !important;
}

.td-custom-col-right .wpb_wrapper {
    justify-content: flex-end !important;
}

.td-custom-col-left .wpb_wrapper {
    justify-content: flex-start !important;
}

.td-custom-col-right img {
    display: block !important;
}

.td-custom-col-left {
    transform: translateY(-2px);
}

/* Terms page*/
.terms-conditions {
	font-family: Alegreya !important;
	font-size: 18px !important;
}