/* Masonry: 2 columns */
.tools__grid {
    column-count: 2;
    column-gap: 1rem;
}

@media (max-width: 768px) {
    .tools__grid {
        column-count: 1;
    }
}

.tools__card {
	background-color: white;
	padding: 24px;
	border-radius: 30px;
	display: inline-grid;
    width: 100%;
    margin-bottom: 12px;
	grid-template-columns: 2fr 4fr;
	break-inside: avoid;
	gap: 20px;
	align-items: center;
}

.tools__img {
	max-width: 140px;
}

.tools__title {
	color: #2D2D5F;
	font-family: Inter;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: 30px;
}

.tools__desc {
	margin-bottom: 24px;
}

.tools__upload {
	color: #FFF !important;
    border-width: 0px !important;
    border-color: RGBA(255, 255, 255, 0);
    border-radius: 10px;
    background-color: #2d2d5f;
	padding-top: 12px !important;
    padding-right: 15px !important;
    padding-bottom: 12px !important;
    padding-left: 12px !important;
	font-family: Komet;
	font-size: 15px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.7em!important;
}

.tools__upload::after {
  	content: url('/wp-content/uploads/2026/05/download-white.svg')!important;
  	margin-left: 3px!important;
	transform: scale(0.8)!important;
	display: inline-block!important;
	transform-origin: center;
    vertical-align: middle;
}

@media (max-width: 500px) {
    .tools__upload::after {
		top: 10px;
		transform: scale(0.7);
    }
}


/* Pagination */
.tools__pagination {
    display: flex;
    justify-content: end;
    gap: 5px;
	margin-top: 10px;
}

.tools__page {
    padding: 3px 9px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}

.tools__page:hover {
    background: #f5f5f5;
}

.tools__page.is-active {
    background: #2D2D5F;
    color: #fff;
    border-color: #2D2D5F;
}